echarts 仪表盘的数值范围设置成带单位的需要怎么办呢?
例如把'12000'变成'12K'
// 在你的axisLabel里用formatter来做处理 axisLabel: { formatter: value => { return value / 1000 + 'k' } },