Go to project page to see this module in action: http://blacklabel.github.io/multicolor_series/
- Plugin requires the latest Highcharts (4+)
-
Like any other Highcharts module (e.g. exporting), add
<script>
tag pointing tomulticolor_series.js
below Highcharts script tag. -
For NPM users:
var Highcharts = require('highcharts');
require('multicolor_series')(Highcharts);
- For BOWER users:
bower install highcharts-multicolor-series
The latest code is available on github: https://github.com/blacklabel/multicolor_series/
series: [{
type: 'coloredline',
data: [{
y: 200,
segmentColor: 'red'
},{
y: 210,
segmentColor: 'red'
},{
y: 210,
segmentColor: 'red'
},{
y: 100,
segmentColor: 'green'
}, {
y: 100,
segmentColor: 'red'
}]
}]
Property | Description |
---|---|
point.segmentColor | Controls line color between N and N+1 point, independent from point.color, which changes marker color. |
series.type | Set it to "coloredline" or "coloreadarea" to use multicolor series. |
Demos are available at project's github page: http://blacklabel.github.io/multicolor_series/
-
Versions 2.x.y: compatible with Highcharts >= 4.2.2
-
Versions 1.x.y: compatible with Highcharts < 4.2.2