FontSize in chart
FontSize in chart
If I create a piechart how do I change the fontsize of the values in each pie?
Code: Select all
if (chart != null && font != null) {
final Plot plot = chart.getPlot();
if (plot instanceof PiePlot) {
final PiePlot piePlot = (PiePlot) plot;
piePlot.setLabelFont(font);
}
}//else: input unavailable
Java 11, JFreeChart 1.0.15, JFreeSVG 4.0