Multicolor series - Highcharts module

Go to project page to see this module in action: http://blacklabel.github.io/multicolor_series/.

Requirements

Plugin requires the latest Highcharts (4+)

Installation

Like any other Highcharts module (e.g. exporting), add <script> tag pointing to multicolor_series.js below Highcharts script tag.

For NPM users:

var Highcharts = require('highcharts');
require('multicolor_series')(Highcharts);

Code

The latest code is available on github: https://github.com/blacklabel/multicolor_series/

Usage and demos


	series: [{
            type: 'coloredline',
            data: [{
            		y: 200,
            		segmentColor: 'red'
            },{
            		y: 210,
            		segmentColor: 'red'
            },{
            		y: 210,
            		segmentColor: 'red'
            },{
            		y: 100,
            		segmentColor: 'green'
            }, {
            		y: 100,
            		segmentColor: 'red'
            }]
	}]

Parameters

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.

Demo

Releases