...
DecimalFormatSymbols dfSymbols = new DecimalFormatSymbols();
dfSymbols.setGroupingSeparator(':');
DecimalFormat dformatT = new DecimalFormat("00,00",dfSymbols);
CategoryPlot plot = (CategoryPlot) chart.getPlot();
lot.setLabelFormatString(dformatT.toPattern());
plot.setLabelsVisible(true);
plot.setVerticalLabels(true);
plot.setLabelFont(new Font("Arial",Font.PLAIN,8));
...
i have the code above, and the line :
"lot.setLabelFormatString(dformatT.toPattern());"
dont it work !! am i doing something wrong ?