Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 529 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 529 Bytes

Installation

npm install react-plotter --save

API

Live Demo and API

Usage

import line from 'react-plotter/plot-styles/line'
import circleMarker from 'react-plotter/markers/circle'
setInterval(() => {
  this.setState({
    data: sinewave(100)
  })
}, 50)

<Plotter
  style={line({marker: circleMarker()})}
  width={600}
  height={400}
  dataSize={5000}
  initialData={sinewave(1000)}
  appendData={this.state.data}
  trigger={0} />

TODO

  • Tests