javascript - How to set the Y-axis not to display numerical values ​​in the Echarts chart
过去多啦不再A梦
过去多啦不再A梦 2017-06-12 09:29:13
0
1
1837


As shown in the figure, how to set the configuration items so that the y-axis value is not displayed

过去多啦不再A梦
过去多啦不再A梦

reply all(1)
phpcn_u1582
yAxis : [
    {
        axisLabel : {
            formatter: function(){
                  return "";
            }
        }
    }
]

When formatter is followed by a method, the display value of the y-axis is determined by the return value of the method

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!