echart-for-react 如何在条形图上方显示数值?

问题描述 投票:0回答:1

我正在使用 https://github.com/hustcc/echarts-for-react 进行数据可视化。如何在条形图顶部显示确切的数字?例如第一个栏顶部有 30,000。

reactjs echarts
1个回答
0
投票

您可以使用

label
属性来显示值。这是一个示例配置

option = {
  xAxis: {
    type: 'category',
    data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
  },
  yAxis: {
    type: 'value'
  },
  series: [
    {
      data: [120, 200, 150, 80, 70, 110, 130],
      type: 'bar',
      showBackground: true,
      backgroundStyle: {
        color: 'rgba(180, 180, 180, 0.2)'
      },
      label: {
        show: true,
        position: 'top'
      },
    }
  ]
};
© www.soinside.com 2019 - 2024. All rights reserved.