score:7

Accepted answer

this problem is a bug and it is reported here: https://github.com/highcharts/highcharts/issues/8477

to make it work in versions lower than 6.1.1 use this workaround:

highcharts.wrap(highcharts.axis.prototype, 'getplotlinepath', function(proceed) {
    var path = proceed.apply(this, array.prototype.slice.call(arguments, 1));
    if (path) {
        path.flat = false;
    }
    return path;
});

live demo: https://jsfiddle.net/blacklabel/grpwztl3/


Related Query

More Query from same tag