echarts柱状图y轴单位
时间: 2023-08-06 13:09:56 浏览: 169
echarts漂亮的柱状图按月统计
ECharts 柱状图的 Y 轴单位可以通过设置 axisLabel 的 formatter 属性来指定。下面是一个示例代码:
```
option = {
...
yAxis: {
type: 'value',
axisLabel: {
formatter: '{value} 单位' // 替换为你想要的单位
}
},
...
};
```
在 formatter 属性中,可以使用 `{value}` 来表示当前刻度的数值,然后通过添加单位字符串来完成单位的添加。你可以根据需要将 `{value} 单位` 中的 "单位" 替换为你实际需要的单位。
阅读全文