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

enter image description here 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

Popular posts from this blog

Magento/PHP - Get phones on all members in a customer group -

php - .htaccess mod_rewrite for dynamic url which has domain names -

Website Login Issue developed in magento -