我在一个页面中有5个图表,我没有得到当前的图表索引,因为我在第5个图表上写了标签名称(在另一个页面中它将处于不同的位置,如第2或第3个)。现在手动提到" Highcharts.charts [0]",而不是" 0",我想要值。提前谢谢。
{{SERVER_0}} -heap-size=4096m -locators={{LOCATOR_0}}:9999,{{LOCATOR_1}}:9888 -J-Dgemfirexd.disable-getall-local-index=true
{{SERVER_1}} -heap-size=4096m -locators={{LOCATOR_0}}:9999,{{LOCATOR_1}}:9888 -J-Dgemfirexd.disable-getall-local-index=true
答案 0 :(得分:2)
您可以选择图表,例如,通过其容器id
。
$("#firstChartContainer").highcharts(/*options*/)
var firstChart = $("#firstChartContainer").highcharts();
firstChart.xAxis....