gpt4 book ai didi

javascript - 如何隐藏日期时间 x Axis 但仍然能够在 Highcharts 甘特图中显示绘图线?

转载 作者:行者123 更新时间:2023-12-02 23:52:43 26 4
gpt4 key购买 nike

我想禁用或隐藏下图中标记的 x Axis :

Image

但我仍然需要能够展示情节主线。

我尝试使用“xAxis”Highcharts 属性,并且能够隐藏标记的 x Axis ,但随后我无法添加绘图线。在我看来,这个轴与情节有某种联系。

非常感谢您的帮助。

最佳答案

plotLines 连接到一个轴,但您可以单独禁用网格标签:

xAxis: [{
...,
grid: {
enabled: false
},
plotLines: [{
color: 'red',
value: today + day * 7,
width: 5
}],
labels: {
enabled: false
},
tickLength: 0
}, {
visible: false
}]

现场演示: https://jsfiddle.net/BlackLabel/c2xLruvp/

API引用: https://api.highcharts.com/gantt/xAxis.visible

关于javascript - 如何隐藏日期时间 x Axis 但仍然能够在 Highcharts 甘特图中显示绘图线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55570410/

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