Hi, i want to hide the labels for the bottom axis.
In ExtJS <4 it worked the following way:
extraStyle: {
xAxis: {showLabels: false},
yAxis: {showLabels: false}
}
How to solve this in ExtJS 4?
Hi, i want to hide the labels for the bottom axis.
In ExtJS <4 it worked the following way:
extraStyle: {
xAxis: {showLabels: false},
yAxis: {showLabels: false}
}
How to solve this in ExtJS 4?
Have you tried setting the title of the axis to blank and forcing a redraw of the axis label?
Try this:
Code:function emptyText(val) { return ''; } ...axes: [{ type : 'Category', position: 'bottom', fields : ['data'], label : {renderer: emptyText}, title : 'Title' }, ...
Hi ,
Am using the above function,am able to hide the labels,but am unable to remove chart ticks,
Can any body know how to remove the ticks and labels....
Thanks In Advance
Can anybody have a solution to this scenario ???![]()
you can add "hidden: true" to remove the line and ticks.