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

Categories

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

echart 设置 Y轴标签在柱状图上垂直居中 失效?

Y轴的标签在柱状图上没有垂直居中显示。
设置了

yAxis: {
      type: 'category',
      data: yAxis,
      axisLabel: {
        inside: true,
        *verticalAlign: 'middle'*
        // 文档中应该是这个属性来设置垂直居中,但是未生效
      },
      axisLine: {
        lineStyle: {
          color: '#fff',
        },
      },
      zlevel: 1,
    },

image.png
image.png


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

1 Answer

0 votes
by (71.8m points)

设置textStyle lineHeight

axisLabel:{
       textStyle:{
          color: "#444",
          fontSize: 8,
          lineHeight: 9
       },
}

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