yAxis. axisLabel (坐标轴刻度标签的相关设置)
yAxis.axisLabel. formatter(刻度标签的内容格式器,支持字符串模板和回调函数两种形式。)
官网中的介绍:
具体代码配置:
yAxis: { // 设置y轴数据保留三位小数 axisLabel: { formatter: (value, index) => { return value.toFixed(3); } }, }
yAxis. axisLabel (坐标轴刻度标签的相关设置)
yAxis.axisLabel. formatter(刻度标签的内容格式器,支持字符串模板和回调函数两种形式。)
官网中的介绍:
具体代码配置:
yAxis: { // 设置y轴数据保留三位小数 axisLabel: { formatter: (value, index) => { return value.toFixed(3); } }, }