保留 Highstock 图表中间隙的时间间隔比
Preserve time spacing ratio of gaps in Highstock charts
在 Highstock 图表中,无论差距的时间间隔如何,任何差距都将始终具有相同的宽度(似乎是点与点之间的最小距离的宽度),从而导致 time/x 轴变窄,虽然这不会发生在 "navigation" 系列中。
有什么简单的方法可以让图表根据持续时间保留间隙的间距,就像导航栏中已经发生的那样(从而保持 x 轴不变窄)?
标准 Highstock 图表默认使用序号 x 轴。
In an ordinal axis, the points are equally spaced in the chart regardless of the actual time or x distance between them. This means that missing data for nights or weekends will not take up space in the chart. Defaults to true.
您可以尝试通过将 xAxis.ordinal 设置为 false http://api.highcharts.com/highstock/xAxis.ordinal
来禁用此参数
xAxis: {
ordinal: false
},
在 Highstock 图表中,无论差距的时间间隔如何,任何差距都将始终具有相同的宽度(似乎是点与点之间的最小距离的宽度),从而导致 time/x 轴变窄,虽然这不会发生在 "navigation" 系列中。
有什么简单的方法可以让图表根据持续时间保留间隙的间距,就像导航栏中已经发生的那样(从而保持 x 轴不变窄)?
标准 Highstock 图表默认使用序号 x 轴。
In an ordinal axis, the points are equally spaced in the chart regardless of the actual time or x distance between them. This means that missing data for nights or weekends will not take up space in the chart. Defaults to true.
您可以尝试通过将 xAxis.ordinal 设置为 false http://api.highcharts.com/highstock/xAxis.ordinal
来禁用此参数 xAxis: {
ordinal: false
},