gpt4 book ai didi

javascript - 如何在 Highcharts 中设置固定的 xAxis 值

转载 作者:行者123 更新时间:2023-12-02 23:45:40 24 4
gpt4 key购买 nike

我需要像图片一样设置固定的xAxis值, like that picture我尝试设置它,但它不能:

tickPositioner: function(min, max) {
var result = []
let today = moment().subtract(4,`day`).format("YYYY-MM-DD")
let tomorrow = moment().subtract(3,`day`).format("YYYY-MM-DD")
result.push(moment(`${today} 06:00:00`).unix()*1000)
result.push(moment(`${today} 12:00:00`).unix()*1000)
result.push(moment(`${today} 18:00:00`).unix()*1000)
result.push(moment(`${tomorrow} 00:00:00`).unix()*1000)
result.push(moment(`${tomorrow} 06:00:00`).unix()*1000)
result.info = this.tickPositions.info;
return result;
}

我不知道如何设置这些值?

最佳答案

您需要使用xAxis.tickInterval API documentation像这样:

xAxis: {
tickInterval: 21600000
}

Fiddle

关于javascript - 如何在 Highcharts 中设置固定的 xAxis 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55863588/

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