simple-timeseries

1.0.0 • Public • Published

Simple Timeseries

A simple timeseries chart using D3.

Screen Shot

Installation:

npm i simple-timeseries

Usage:

 
var ST = require('simple-timeseries')
 
var data = [
   [
        1178866800000,  // X: MS since epoch, aka (new Date).valueOf()
        108.74          // Y: "Price" in this case
    ],
    // ...
    [
        1177398000000,
        93.239999999999995
    ]
]
var opts = {
  width: 500,
  height: 300,
  yLabel: 'Price'
}
 
var st = new ST(data, opts)
document.body.appendChild(st.el)
 

Examples:

See examples in /example, view in browser by running:

npm run example

Uses code from http://bl.ocks.org/mbostock/3883245

License

MIT

Package Sidebar

Install

npm i simple-timeseries

Weekly Downloads

3

Version

1.0.0

License

MIT

Last publish

Collaborators

  • dguttman