react-highcharts
Highcharts component for react.
Demos
react-highcharts | react-highcharts/more | react-highcharts/highstock | react-highcharts/highmaps
You can find the full code for the examples here
To run the demo:
-
run:
git clone https://github.com/kirjs/react-highcharts.gitcd react-highcharts && npm installnpm run demo -
Point your browser at http://localhost:8080
Installation
npm install react-highcharts --save
Usage
Webpack/Browserify
npm install react-highcharts highcharts react --save
const React = ;const ReactDOM = ; const ReactHighcharts = ; // Expects that Highcharts was loaded in the code. const config = /* HighchartsConfig */; ReactDOM;
Accessing Highcharts API After Render
For access to methods & properties from the Highcharts library you can use ReactHighcharts.Highcharts
.
For example, the Highcharts options are available via ReactHighcharts.Highcharts.getOptions()
.
Highcharts provides an API for manipulating a chart after the initial render. See the Methods and Properties in the documentation. Here's how you access it:
Component { let chart = thisrefschart; chartseries0; } { return <ReactHighcharts = ="chart"></ReactHighcharts>; }
Limiting Highchart Rerenders
Rerendering a highcharts graph is expensive. You can pass in a isPureConfig
option to the ReactHighcharts
component, which will keep the highcharts graph from being updated so long as the provided config
is referentially equal to its previous value.
Rendering on the server with node
See this recipe
Using highmaps
const ReactHighmaps = ;
- see the demo
demo)
Using highstock (const ReactHighstock =
Using highcharts modules/add-ons like exporting, data, etc.
Use highcharts-more
npm package.
const ReactHighcharts = ReactHighchartsHighcharts
You can find the full list list here
- see the demo
For Contributors
Running tests
Run npm tests
Running demo
Run npm run demo
Using with React@0.13
npm install react-highcharts@^3.0.0 --save