ECharts legend 图例文字 text 与图标 icon 对齐

under Website  Notes of Programming  tag Echarts    Published on November 1st , 2022 at 03:02 pm

先将文字置底 verticalAlign,再通过控制行高 lineHeight 与图例图标对齐。

  legend: {
    icon: 'square',
    itemWidth: 10,
    formatter: ' {a|{name}}',
    textStyle: {
      rich: {
        a: {
          fontSize: 16,
          lineHeight: 13,
          verticalAlign: 'bottom',
        },
      },
    },
  },

本页由 matcha 整理和发布,采用 知识共享署名4.0 国际许可协议进行许可,转载前请务必署名
  文章最后更新时间为:November 1st , 2022 at 07:21 am
分享到:Twitter  Weibo  Facebook