highcharts - Highstock lineWidth -
i want set chart linewidth has strange behavior.
on mouse on turns linewidth:2(default) , when mouse outs turns linewidth setting.
  plotoptions:{             series:{                 linewidth: 5             }         },   what's problem?
demo: http://jsfiddle.net/bahar_agi/hepx3/2/ thanks
yes there is. said, can configure state described in api.
see http://jsfiddle.net/hepx3/4/
    plotoptions: {         series: {             linewidth: 5,             states: {                 hover: {                     enabled: true,                     linewidth: 5                 }             }         }     }       
Comments
Post a Comment