hello everyone,
i'm using the vertical bar chart of your wonderful package.
firstly,i must thank all u people for the wonderful job.
i would like to disable the horizontal axis labels i.e the x-axis labels.
As i do not have any category it's not neccesary to have a x-axis lables.
how can i disable the lables.
secondly, can i change the color of the bar to our requirements.
hoping a reply from u sooon.
thanks in advance
regards
satish
vertical bar chart
Re: vertical bar chart
You should be able to do this:
CategoryPlot myPlot = myChart.getCategoryPlot();
CategoryAxis myAxis = myPlot.getDomainAxis();
myAxis.setTickLabelsVisible(false);
Regards,
DG.
CategoryPlot myPlot = myChart.getCategoryPlot();
CategoryAxis myAxis = myPlot.getDomainAxis();
myAxis.setTickLabelsVisible(false);
Regards,
DG.