gpt4 book ai didi

css - 如何以编程方式在 highstock 中设置导航器句柄?

转载 作者:太空宇宙 更新时间:2023-11-04 11:51:36 25 4
gpt4 key购买 nike

有没有一种方法可以在 highstock 导航器中以编程方式设置标记,即使我想将标记设置为 { type: "day", count: 1, text: "1d" }但不显示 Zoom 1d .

最佳答案

可以使用 xAxis.setExtremes() 方法在没有 rangeSelector 的情况下设置极值:http://plnkr.co/edit/bRnV1lyJHmmx7YURTggq?p=preview

  chart: {
renderTo: 'container',
height: 600,
events: {
load: function() {
var max = this.xAxis[0].max,
range = 24 * 3600 * 1000; // one day

this.xAxis[0].setExtremes(max - range, max);
}
}
},

关于css - 如何以编程方式在 highstock 中设置导航器句柄?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30588875/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com