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