javascript - Disable marker hover in only one marker of highchart -


i trying convince highchart bidding , have encountered problem.

what want acchieve: want 1 of markers of graph disappear. want line go through (and break at) 1 point, point irrelevant , not want point pop when hovering on it. current code looks this:

$(function () { var chart; $(document).ready(function() {     chart = new highcharts.chart({         chart: {             renderto: 'container',             type: 'line'         },            plotoptions: {             series: {                 states: {                     hover: {                         enabled: true                     }                 }             }         },         series: [{             marker: {                 enabled: false             },             data: [15.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, {                 y: 26.5,                 marker: {                     enabled: false,                     states: {                         hover: {                             enabled: false                         }                     }                 }             }, 23.3, 18.3, 13.9, 9.6]             }]     }); }); }); 

and markers behave same: not visible until hover on them, @ point pop up. want markers behave in provided code, exception of marker @ y=25.6. want behaviour of marker same behavior markers when set

hover:{ enabled: false } 

in original code. is, want marker "dissapear" completely.

thanks in advance help. jan

this unfortunately bug in highcharts, see this.


Comments