Based on info in this thread: Implement own state - INACTIVE_STATE?
I have built a chart that fits my needs - jsfiddle
I added some custom controls to allow the user to show/hide all series and to check/uncheck all series.
These all work fine.
The last part that I want to do is allow the user to reset the chart with the original options.
This part I also got working, but there is a problem: once the chart is rebuilt, the functions that allow the user to show/hide/check/uncheck no longer work because I have destroyed and re-specified the variable that they run off of.
So my question(s) -
The code to reset the chart is here:
//reset the chart to original specs
$('#resetChart').click(function(){
chart1.destroy();
chart1 = new Highcharts.Chart(optionsChart1,highlightSer);
});
highlightSer
is a call back function to highlight certain series.
an example of the code which no longer works afterward:
var chart = chart1;
$('#showAll').click(function(){
for(i=0; i < chart.series.length; i++) {
chart.series[i].show();
}
});
thanks!
Is there a reason for assigning the chart to a new variable here?
var chart = chart1;
chart
will not point to a graph anymore after you have destroyed it. If you just use chart1
, which you re–assign, everything seems to work just fine. Or am I missing something?
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With