react-smoothie
React wrapper for Smoothie Chart.
Install
Usage
Props
SmoothieComponent
's props are all passed as the options object to Smoothie Chart's constructor.
Extra
Three extra props can be used:
width
Control the width of the <canvas>
used.
default: 800
height
Control the height of the <canvas>
used.
default: 200
streamDelay
default: 0
(ms)
Delay the displayed chart. This value is passed after the component mounts as the second argument to SmoothieChart.streamTo
.
Responsive charts
Experimental support for responsive charts was added in 0.3.0.
Simply set the responsive
prop to true
and canvas will use the full width of the parent container.
Height is still a controlled prop.
TimeSeries
The TimeSeries
object from Smoothie Chart is exposed via the addTimeSeries()
function.
The optional first argument of addTimeSeries()
gets passed as the options to the TimeSeries
constructor.
The last argument of addTimeSeries()
gets passed as the options argument of SmoothieChart.addTimeSeries()
.
Test
Run yarn dev
to start the Webpack Dev Server and open the page on your browser.