Choose your graph type above

Area
00.10.20.30.40.50.60.70.80.91

Live Code for chart shown on left!

import PubNubReact from 'pubnub-react';
import Chart from 'eon-react';

class App extends Component {

  constructor(props){
    super(props)
    this.pubnub  =  new PubNubReact({
      subscribeKey:  'demo' // Your sub key
    });
    this.pubnub.init(this);
  }

  render() {
    return ( 
      <Chart
        pubnub={this.pubnub}
        channels={['eon-components']} /** Enter your channel name **/
        type='area' />
    );
  }
}