美文网首页
echarts使用记录

echarts使用记录

作者: LemonTree7 | 来源:发表于2023-02-20 13:36 被阅读0次

1、柱状图如何让label文字固定在右侧

series: [
    {
      data: [],
      color: '#08B76F',
      type: 'bar',
      barWidth: '12px',
      showBackground: true,
      backgroundStyle: {
        color: '#E9EDF2',
        borderRadius: 15,
      },
      //使用这个对象来显示
      itemStyle: {
        normal: {
          label: {
            show: true,
            position: 'insideLeft',
            offset: [284, 0],  //标注好这个距离就可以
            textStyle: {
              //数值样式,显示的文字大小和颜色
              fontSize: '12',
              color: 'rgba(0,0,0,0.55)',
              fontWeight: 400,
              lineHeight: '18',
            }
          },
          barBorderRadius: 15,
        },
      },
    },
  ]

相关文章

网友评论

      本文标题:echarts使用记录

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