In extjs charts, how do you hide the axis and axis labels? -
I am using the extjs chart to display some data. In this data, axis and axis labels are irrelevant - only data tendency is important. So I want to close the letters. How do i do this
You want to set extra style x / yAxis .
..., additional style: {xAxis: {showLabels: false}, yAxis: {showLabels: false}}, ...
< / P>
Comments
Post a Comment