我这里有这个量规,但不知道如何将圆形标签上的小数四舍五入。
试过这个:
title: {
text: when,
style: {
fontSize: fontSizeMin + 4 + 'px'
},
formatter: function () {
Math.round(this.y * Math.pow(10, 1)) / Math.pow(10, 1);
}
},
但没有工作...