Drilldown in highcharts

Is it posible to use drilldown in highcharts? Am i doing something wrong?

https://snippet.webix.com/2t6khluw

Hello @jarenas ,
Yes, you need to provide the module names in the modules property:

   webix.ui({
        view:"highchart",
        modules:["drilldown"], // array of desired extra modules
        settings:{
            // chart config
        }
    });

Please take a look at this snippet:
https://snippet.webix.com/p9zsgeli

Excellent, thank you.