Just checked code - that plugin doesn't support drilldown module for Highcharts.
To allow drilldowns, edit sources, about ~104 line add drilldown property:
// new code:
if(config.drilldown) {
mergedOptions.drilldown = config.drilldown;
};
// old code:
if(config.title) {
mergedOptions.title = config.title;
};
if (config.subtitle) {
mergedOptions.subtitle = config.subtitle;
};
if (config.credits) {
mergedOptions.credits = config.credits;
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…