When using Highcharts.setOptions()
it's for all charts following after this function.
But I haven't found a way to do something like:
$(".barcharts_overview").Highcharts.setOptions()
or $(".asplinecharts_detailed").Highcharts.setOptions()
or like
$(".asplinecharts_detailed").setOptions()
Is there a way to do something like this? My goal is, to define 2-3 option sets which should be used, when the div container has a class like "barcharts_overview" or "asplinecharts_detailed" to just define the settings once, while displaying multiple charts in different styles on one page.