Test Recharts

by cdeutsch

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.24/browser.js"></script>
<script src="https://npmcdn.com/[email protected]/dist/react-with-addons.min.js"></script>
<script src="https://npmcdn.com/[email protected]/dist/react-dom.min.js"></script>
<script src="https://npmcdn.com/prop-types/prop-types.min.js"></script>
<script src="https://npmcdn.com/recharts/umd/Recharts.min.js"></script>
<div id="container">
    <!-- This element's contents will be replaced with your component. -->
</div>

CSS

body {
  margin: 0;
}
#container {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  width: 800px;
  height: 800px;
  background-color: #fff;
}

Babel + JSX

const {LineChart, Line, XAxis, YAxis, ReferenceLine, CartesianGrid, Tooltip, Legend} = Recharts;
const DATA = [
      {date: new Date(2018, 8, 1, 13, 40), uv: 4000, pv: 2400, amt: 2400},
      {date: new Date(2018, 8, 1, 13, 45), uv: 3000, pv: 1398, amt: 2210},
      {date: new Date(2018, 8, 1, 13, 50), uv: 2000, pv: 9800, amt: 2290},
      {date: new Date(2018, 8, 1, 13, 55), uv: 2780, pv: 3908, amt: 2000},
      {date: new Date(2018, 8, 1, 13, 0), uv: 1890, pv: 4800, amt: 2181},
      {date: new Date(2018, 8, 1, 13, 5), uv: 2390, pv: 3800, amt: 2500},
      {date: new Date(2018, 8, 1, 13, 10), uv: 3490, pv: 4300, amt: 2100},
];

function random(min, max) {
  // tslint:disable-next-line:insecure-random
  return Math.floor(Math.random() * (max - min + 1) + min);
}

const SimpleLineChart = React.createClass({
	getInitialState () {
    return {
      lastDate: new Date(2018, 8, 1, 14, 10),
      data: [...DATA],
    };
  },
	
	componentDidMount() {
    setInterval(() => {
      let { data, lastDate } = this.state;

      const minuteIncrement = 5;

      const nextDate = new Date(lastDate.getTime() + minuteIncrement * 60000);

			data = [...data];

      data.push({
        date: nextDate,
        uv: random(0, 10000),
        pv: random(0, 10000),
        amt: random(0, 10000),
      });

      this.setState({ data: data, lastDate: nextDate });
      
    }, random(1000, 5000));
  },

	render () {
  	const { data } = this.state;
    
  	return (
    	<LineChart width={600} height={300} data={data}
            margin={{top: 20, right: 50, left: 20, bottom: 5}}>
       <CartesianGrid strokeDasharray="3 3"/>
       <XAxis dataKey="date"/>
       <YAxis/>
       <Tooltip/>
       <Legend />
       <ReferenceLine x="Page C" stroke="red" label="Max PV PAGE"/>
       <ReferenceLine y={8800} label="Max" stroke="red"/>
       <Line type="monotone" dataKey="pv" stroke="#8884d8" isAnimationActive={false} />
       <Line type="monotone" dataKey="uv" stroke="#82ca9d"...