Thursday, 15 April 2010

php - Highchart marker clickable disable and enable condition base? -



php - Highchart marker clickable disable and enable condition base? -

i developed timeline chart using highchart faced new scenario.

i want status base of operations hover disable/enable alternative possible. ex: add together custom values serious data. disable hover custom values based if possible please help out, lot of problem solved.

thanks in advance.

yes, can set individual point's hover state using enabled flag. need set per point best pre-process info array. code:

$(function () { var $reporting = $('#reporting'); $('#container').highcharts({ title: { text: 'mouse events demo' }, subtitle: { text: 'on point mouse on or mouse out, values should reported in top right' }, series: [{ data: [29.9, 71.5, { y: 106.4, marker: { states: { hover: { enabled: false } } } }, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4] }] }); });

live demo.

php highcharts

No comments:

Post a Comment