I'm using extjs charts to display some data. In this data, the axis and axis labels are irrelevant - only the data trend is important. So I want to turn off the axises. How do I do that?
+2
A:
You want to set the extraStyles for the x/yAxis.
...,
extraStyle: {
xAxis:{showLabels:false},
yAxis:{showLabels:false}
},
...
Shea Frederick
2010-01-25 15:31:34
Wow, Shea Frederick answered my question! Your book has been a real help to me. Thanks!
Spike Williams
2010-01-26 01:22:03
Glad to hear you enjoyed the book. Your welcome :)
Shea Frederick
2010-02-09 17:36:17