Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.6k views
in Technique[技术] by (71.8m points)

echarts 如何设置x轴的终点不靠尾部

image.png

需要达到的效果:
image.png

相关代码

xAxis: {
          show: true, 
          type: 'category',
          boundaryGap: true,
          axisLine: {
            show: true,
            lineStyle: {
              color: '#8a99ae'
            }
          },
          axisTick: {
            show: false
          },
          data: [
            '2017年上',
            '2017年下',
            '2018年上',
            '2018年下',
            '2019年上',
            '2019年下'
          ]
        }

文档找了半天也没看见,这个要修改哪个属性?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

`xAxis: {
boundaryGap: true,
}`


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...