我想有synchronized-charts
在我的下钻,但在官方的链接,它会创建三个新的图表,但如何将其在钻增加了吗?
官方的例子:https://www.highcharts.com/demo/synchronized-charts
我的演示,其中向下钻取需要同步的图表:
最简单的解决方案是创建一个额外的,最初是隐藏与同步图表容器和切换两个容器的可见性来模拟钻:
drilldown: function(e) {
this.renderTo.style.display = 'none';
document.getElementById('drilldownContainer').style.display = 'block';
if (Highcharts.charts.length < 2) {
createDrilldownChart();
}
}