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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    7
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    7
  • 0.1.0
    3
  • 0.0.0
    3

Package Sidebar

Install

npm i simple-timeseries

Weekly Downloads

6

Version

1.0.0

License

MIT

Last publish

Collaborators

  • dguttman