I am using Highcharts drilldown feature and change visualization type in each level of drilldown. I have an issue when I drillup from pie chart to columns type, the xAxis labels disapear (replaced by number values).
You can see an example in the following jsfiddle : https://jsfiddle.net/vegaelce/21ogcap9/
When you click on "Safari" then drillup to "Browser", the xAxis values are correct but when you click on "Chrome" and drillup to "Browser", the xAxis values are replaced by numbers.
I tried to use the
chart:{
event:{
drillup: function(e) {
var chart = this;
chart.axes[0].update({type: "category"});
}
}
}
but it seems the "names" values are not correctly set in the xAxis.
Is there a way to fix that please ? Thanks