-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(ngx charts): Added documentation around
ngx charts
and links t…
…o their docs (#219) * initial install commit for ngx-chart * install commit * lint errors fixed * Line & Area Chart added * ngx-charts updated to the latest version * update(ngx-charts): overhaul ngx-chart demo & info * remove blank README and pipe as provider
- Loading branch information
1 parent
5e5a7ef
commit d8311eb
Showing
13 changed files
with
928 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
export let single: any = [ | ||
{ | ||
'name': 'Databases', | ||
'value': 382941, | ||
}, | ||
{ | ||
'name': 'Containers', | ||
'value': 152294, | ||
}, | ||
{ | ||
'name': 'Streams', | ||
'value': 283000, | ||
}, | ||
{ | ||
'name': 'Queries', | ||
'value': 828921, | ||
}, | ||
]; | ||
|
||
export let multi: any = [ | ||
{ | ||
'name': 'Containers', | ||
'series': [ | ||
{ | ||
'value': 2469, | ||
'name': '2016-09-15T19:25:07.773Z', | ||
}, | ||
{ | ||
'value': 3619, | ||
'name': '2016-09-17T17:16:53.279Z', | ||
}, | ||
{ | ||
'value': 3885, | ||
'name': '2016-09-15T10:34:32.344Z', | ||
}, | ||
{ | ||
'value': 4289, | ||
'name': '2016-09-19T14:33:45.710Z', | ||
}, | ||
{ | ||
'value': 3309, | ||
'name': '2016-09-12T18:48:58.925Z', | ||
}, | ||
], | ||
}, | ||
{ | ||
'name': 'Alerts', | ||
'series': [ | ||
{ | ||
'value': 2452, | ||
'name': '2016-09-15T19:25:07.773Z', | ||
}, | ||
{ | ||
'value': 4938, | ||
'name': '2016-09-17T17:16:53.279Z', | ||
}, | ||
{ | ||
'value': 4110, | ||
'name': '2016-09-15T10:34:32.344Z', | ||
}, | ||
{ | ||
'value': 3828, | ||
'name': '2016-09-19T14:33:45.710Z', | ||
}, | ||
{ | ||
'value': 5772, | ||
'name': '2016-09-12T18:48:58.925Z', | ||
}, | ||
], | ||
}, | ||
{ | ||
'name': 'Streams', | ||
'series': [ | ||
{ | ||
'value': 4022, | ||
'name': '2016-09-15T19:25:07.773Z', | ||
}, | ||
{ | ||
'value': 2345, | ||
'name': '2016-09-17T17:16:53.279Z', | ||
}, | ||
{ | ||
'value': 5148, | ||
'name': '2016-09-15T10:34:32.344Z', | ||
}, | ||
{ | ||
'value': 6868, | ||
'name': '2016-09-19T14:33:45.710Z', | ||
}, | ||
{ | ||
'value': 5415, | ||
'name': '2016-09-12T18:48:58.925Z', | ||
}, | ||
], | ||
}, | ||
{ | ||
'name': 'Databases', | ||
'series': [ | ||
{ | ||
'value': 6194, | ||
'name': '2016-09-15T19:25:07.773Z', | ||
}, | ||
{ | ||
'value': 6585, | ||
'name': '2016-09-17T17:16:53.279Z', | ||
}, | ||
{ | ||
'value': 6857, | ||
'name': '2016-09-15T10:34:32.344Z', | ||
}, | ||
{ | ||
'value': 2545, | ||
'name': '2016-09-19T14:33:45.710Z', | ||
}, | ||
{ | ||
'value': 5986, | ||
'name': '2016-09-12T18:48:58.925Z', | ||
}, | ||
], | ||
}, | ||
{ | ||
'name': 'NoSQL', | ||
'series': [ | ||
{ | ||
'value': 4260, | ||
'name': '2016-09-15T19:25:07.773Z', | ||
}, | ||
{ | ||
'value': 4810, | ||
'name': '2016-09-17T17:16:53.279Z', | ||
}, | ||
{ | ||
'value': 5087, | ||
'name': '2016-09-15T10:34:32.344Z', | ||
}, | ||
{ | ||
'value': 5941, | ||
'name': '2016-09-19T14:33:45.710Z', | ||
}, | ||
{ | ||
'value': 6427, | ||
'name': '2016-09-12T18:48:58.925Z', | ||
}, | ||
], | ||
}, | ||
]; |
Oops, something went wrong.