Skip to content Skip to sidebar Skip to footer

Highcharts With Angularjs Drilled Down Does Not Work

I am developing a drilled down chart using HichartJS, the chart is getting generated but drill down is not functioning properly. I need the back button as well so that user can go

Solution 1:

Update2 I have made changes for your data , The problem was in formatting of json and the second problem was you were not calling proper id in drillDown. Check the fiddle updated Here with your data

Update1 I have made changes and now its working on fiddle Here . I have added changes to highcharts-ng in script tag in html section of fiddle. Also I changed the data, because your data was not formatted for me.

I just realize that drillDown feature isn't supported by highcharts-ng .see the link Highcharts-ng with drilldown Following edit was done at source code to make it work.

if(config.drilldown) {
  mergedOptions.drilldown = config.drilldown;
 }; 

Post a Comment for "Highcharts With Angularjs Drilled Down Does Not Work"