gpt4 book ai didi

javascript - Highcharts - 重绘时停止 Y 轴值更改

转载 作者:行者123 更新时间:2023-12-02 20:53:54 24 4
gpt4 key购买 nike

当图形重新绘制(缩放或调整大小)时,Y 轴值会发生变化(最大值会发生变化),从而在图形顶部留下一个大的白色间隙(无数据)。

这是一个JsFiddle问题的(真实和虚假的数据,相同的结果)和一些pictures of my actual graph .

这些是我对该图表的选择:

var chartOptions = {
title: false,

xAxis: {
lineWidth: 0,
type: 'datetime'
},

yAxis: [{
lineWidth: 0,
},
{
lineWidth: 0,
opposite: true,
}],

tooltip: {
shared: true
},

series: [{
name: 'A',
yAxis: 0,
type : "area",
},
{
name: 'B',
yAxis: 1,
type : "area",
},
{
name: 'C',
type : "spline",
yAxis: 0,
}],

plotOptions: {
area: {
threshold: null
},
},

chart: {
zoomType: 'x',

},

legend: {
enabled: false
},
};

最佳答案

您可以将alignTicks设置为false。示例:http://jsfiddle.net/b1vrvn2q/9

chart: {
zoomType: 'x',
alignTicks:false
},

关于javascript - Highcharts - 重绘时停止 Y 轴值更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33960561/

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