Quick and dirty series visualizer
Assuming NodeJs and YarnPkg are installed.
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
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
)
{
"name": "fuel",
"data": [
{ "timestamp": 1537592706, "value": 10 },
{ "timestamp": 1537592706, "value": 5 },
{ "timestamp": 1537592706, "value": 20 },
{ "timestamp": 1537592706, "value": 15 }
]
}