/series-visualizer

Quick (and a little dirty) tool to draw time series

Primary LanguageJavaScriptMIT LicenseMIT

Series Visualizer

Quick and dirty series visualizer

Installation

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

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)

{
  "name": "fuel",
  "data": [
    { "timestamp": 1537592706, "value": 10 },
    { "timestamp": 1537592706, "value": 5 },
    { "timestamp": 1537592706, "value": 20 },
    { "timestamp": 1537592706, "value": 15 }
  ]
}