本文介绍了单系列深入到多个系列Highcharts的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要从一个系列深入到多个系列。但是钻取ID似乎在一个系列中是独一无二的,这意味着我无法从单个系列中钻取多个系列;只有一个。
chart.addSingleSeriesAsDrilldown(e.point,series [0]); 多个不同系列的次数和下一次调用 chart.applyDrilldown();
示例: http://jsfiddle.net/49q18Lp3/
I need to drill down from a series to multiple series. But the drilldown id seems to be unique on a series, implying that I can't drilldown to multiple series from a single series; just one. How do I get round this?
解决方案
It is possible to load series for drilldown in drilldown event using chart.addSingleSeriesAsDrilldown(e.point, series[0]);
mulitple times with different series and next call chart.applyDrilldown();
Example: http://jsfiddle.net/49q18Lp3/
这篇关于单系列深入到多个系列Highcharts的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!