Hi premila,
In ChartDirector, one method to disable things by setting their colors to transparent. For example:
//disable axis and axis labels
c.xAxis().setColors(Chart.Transparent, Chart.Transparent);
As an alternative, if the labels are automatically generated by ChartDirector, you may set the label format to a space. This removes the label, but keeps the ticks and grid lines.
c.yAxis().setLabelFormat(" ");
Hope this can help.
Regards
Peter Kwan |