使echarts xAxis不从0开始

问题描述 投票:0回答:3

我正在使用 eCharts scatter 中的散点图。官方文档中没有关于设置轴起点的任何选项,我需要 xAxis 不是从 0 开始,而是设置一些缓冲区,如图所示

enter image description here.

所以气泡不应该从 0 开始,而是有一些额外的缓冲区,所以气泡不应该与 xAxis 重叠。我尝试了 xAxis 和 yAxis 的 borderGap,但轴仍然从 0 开始。有什么可能的解决方法吗?

echarts
3个回答
2
投票

在echarts 5.4上是

https://echarts.apache.org/en/option.html#yAxis.min

对于 x

xAxis: {min: 'dataMin'}
或 y
yAxis: {min: 'dataMin'}


0
投票

尝试使用

xAxis: { onZero: false }


0
投票

要设置与图表边缘对齐,只需将

boundaryGap
设置为
true
(echarts v.5)

xAxis: {
  boundaryGap: false,
  /* other options */
}
© www.soinside.com 2019 - 2024. All rights reserved.