如何制作高图的标签只在需要时显示小数值 ?
现在我正在使用
yAxis: {
title: {
text: null,
},
tickAmount: 5,
labels: {
format: "{value:.2f}", // this stands for showing two decimal places
},
};
这种配置的效果是我看到小数位,即使它们不需要代表数字:
我想只在需要时看到小数位,例如: 3,14。
答案 0 :(得分:1)
您可以在yAxis.labels.formatter
内执行模运算来检查数字是否有小数,如果是,请使用Highcharts.numberFormat
函数显示带有两位小数的数字。看一下下面的例子。
API参考:
http://api.highcharts.com/highcharts/yAxis.labels.formatter
http://api.highcharts.com/highcharts/Highcharts.numberFormat
答案 1 :(得分:1)