Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stoakes/series-visualizer
Quick (and a little dirty) tool to draw time series
https://github.com/stoakes/series-visualizer
Last synced: about 2 hours ago
JSON representation
Quick (and a little dirty) tool to draw time series
- Host: GitHub
- URL: https://github.com/stoakes/series-visualizer
- Owner: Stoakes
- License: mit
- Created: 2018-09-22T07:13:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-15T07:45:37.000Z (about 6 years ago)
- Last Synced: 2024-11-09T16:48:09.629Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 154 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Series Visualizer
_Quick and dirty series visualizer_
## Installation
Assuming NodeJs and YarnPkg are installed.
```bash
git clone https://github.com/Stoakes/series-visualizer.git
cd series-visualizer
yarn install
yarn build
# Check `npm bin` folder is in your PATH
npm install -g serve
serve -s build
```## Usage
Once the application started, Copy-Past your series into the form and see them on the chart.
Series format is expected to be (even though this can be changed in `AppContainer.js`)
```json
{
"name": "fuel",
"data": [
{ "timestamp": 1537592706, "value": 10 },
{ "timestamp": 1537592706, "value": 5 },
{ "timestamp": 1537592706, "value": 20 },
{ "timestamp": 1537592706, "value": 15 }
]
}
```