javascript - Highcharts - using flag in columnrange charting to make a datarange invisible and dispaly message -



javascript - Highcharts - using flag in columnrange charting to make a datarange invisible and dispaly message -

i have highcharts - columnrange chart works fine want create invisible 1 of dataranges based on info

for illustration in code var arylist = '[{"name" :"taxupdt_ftp","st_time_am_pm" :"n/a","ed_time_am_pm" :" pm",

here when "st_time_am_pm" :"n/a" want disable info range , display message says "not available"

here jsfiddle

thanks. help appreciates..

you need set parameter visible false , in callback hide point graphic.

example: http://jsfiddle.net/pq5eg/1/

$.each(chart.series, function(i, s){ $.each(s.data, function(j, p){ if(p.hidden) p.graphic.hide(); }); });

javascript jquery highcharts

Comments

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -