score:21

Accepted answer

You can do this with a combination of the threshold and negativeColor series options.

      series: [{
        name: 'KPN12345',
        data: [
            [1327881600000, 11],
            etc...
        ],
        threshold: 15,
        negativeColor: 'green',
        color: 'red',
        tooltip: {
            valueDecimals: 2
        }
    }]

Fiddle here.

enter image description here


Related Query

More Query from same tag