CategoryPlot plot = new CategoryPlot(dataset, categoryAxis, valueAxis,
renderer);
plot.setOrientation(orientation);
plot.setInsets(new RectangleInsets(10.0, 10.0, 10.0, 10.0));
JFreeChart chart = new JFreeChart(title, JFreeChart.DEFAULT_TITLE_FONT,
plot, legend);
How can I change the font color for my dataset? My dataset contains numerical values and I want to make it white while displaying it on the bar chart.