javascript - How can I have same hover point color in highcharts? -
i want have same hover point color when point in hover off state. plunker link here
for example: success tasks have green colored point on hover point color should green instead turns blue. please help
code
plotoptions: { ... series: { cursor: 'pointer', datagrouping: { enabled: false }, marker: { radius: 4, states: { hover: { fillcolor: null } } }, turbothreshold: 1000000 } },
well roundabout problem try this
plotoptions: { .... series: { cursor: 'pointer', datagrouping: { enabled: false }, marker: { radius: 4, states: { hover: { fillcolor: function(){ return true; } } } }, turbothreshold: 1000000 } },
Comments
Post a Comment