美文网首页
echarts让X轴或者Y轴完全显示

echarts让X轴或者Y轴完全显示

作者: 怪兽别跑biubiubi | 来源:发表于2018-07-11 09:45 被阅读0次
    yAxis: {
      type: 'category',
      data: days,
      boundaryGap: false,
      splitLine: {
        show: true,
        lineStyle: {
          color: 'rgba(204,204,204,0.30)',
          type: 'solid'
        }
      },
      // 字体样式
      axisLabel: {
        show: true,
        textStyle: {
          color: '#333333'
          // fontWeight: 'bold'
        },
        // 让字体完全显示
        interval: 0
      },

如下所示 : 使用 interval: 0


image.png

相关文章

网友评论

      本文标题:echarts让X轴或者Y轴完全显示

      本文链接:https://www.haomeiwen.com/subject/czicpftx.html