In extjs diagrams, how do you hide axis and axis labels?

I am using extjs diagrams to display some data. In this data, the axis and axis labels do not matter - only the data trend is important. So I want to disable the axes. How to do it?

+3
source share
1 answer

You want to install extraStyles for x / yAxis.

...,                
extraStyle: {
    xAxis:{showLabels:false},
    yAxis:{showLabels:false}
},
...

Additional information can be found in the YUI Chart API Docs.

+3
source

Source: https://habr.com/ru/post/1729845/


All Articles