Highcharts钻孔按钮

时间:2015-03-25 14:53:51

标签: highcharts drilldown

我继承了一个包含2级向下钻取的图表。通过点击事件实现向下钻取,从最深层开始返回:

click: function () {
    var drilldown = this.drilldown;
    var options;
    if (drilldown) { // drill down
        options = {
            'title': drilldown.title,
            'subtitle': drilldown.subtitle,
            'name': drilldown.name,
            'categories': drilldown.categories,
            'data': drilldown.data,
            'type': chartType
        };
    } else { // restore
        options = {
            'title': title,
            'subtitle': subtitle,
            'name': name,
            'categories': categories,
            'data': data,
            'type': chartType
    };
}
setChart(options);                                }

(完整图表见http://jsfiddle.net/Scrooge/o3bcLwqz/

我的问题:如何添加一个向上钻取按钮,这样我就可以从1级到0级,而无需一直向下钻孔?

0 个答案:

没有答案