📊 A set of charts based on rsuite and ECharts
npm i --save @rsuite/charts echarts
import { LineChart } from '@rsuite/charts';
const data = [
['00:00', random()],
['01:00', random()],
];
const App = () => <LineChart name="Page View" data={data} />;
ReactDOM.render(<App />, mountNode);
MIT licensed