We like to Drilldown on multiple levels in Highchart. Is there already an example in Highchart?
Currently used code:
$(div).highcharts({
chart: {type: 'column'},
credits: {enabled: false},
title: {text: title},
xAxis: {
categories: [
'Instroom',
'Rijdend',
'Úitstroom'
]
},
yAxis: {title: {text: ytitle}},
legend: {enabled: true},
plotOptions: {series: { borderWidth: 1, dataLabels: {enabled: true,}}},
series: first,
drilldown: {
series: drillDownObject(second)
}
});
For a mutiple levels pie chart check out http://jsfiddle.net/bge14m3a/1/
I Create a multi drilldown with multi levels, if anybody needs:
Here is an example that preserves the names on the axis. (Drilldown works on "Animals" > "Mammals")
Drilldown options looks like this:
http://jsfiddle.net/vcsqnr2z/
It's possible, just add all drilldown series, then create connection between point and drilldown. See: http://jsfiddle.net/6LXVQ/2/
You have to write a custom code for mutilple drill downs, We can achieve this by storing Data series in each columns ( first charts ) and passing this series to next graph and so on