我正在使用 https://github.com/hustcc/echarts-for-react 进行数据可视化。如何在条形图顶部显示确切的数字?例如第一个栏顶部有 30,000。
您可以使用
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'
},
}
]
};