Echarts Y轴保留几位小数

Y轴添加标签,可以保留1位小数

                   axisLabel: {                   
                        formatter:function (value, index) {           
                         return value.toFixed(1);      
                        }
                    }

####

对结果进行value.toFixed(n)保留n位小数

发布了85 篇原创文章 · 获赞 67 · 访问量 2万+

猜你喜欢

转载自blog.csdn.net/secretstarlyp/article/details/104366160