I have declared an 3DPieChart, and I want to change its background / transparency. In this case, by 'background' I mean that white space.
Here's the function that implements this chart, if it's helpful somehow.
//customize panel for visualising the statistics
public void customizeStatisticsPanelWhenButtoninIsPressed()
{
transactionsCenterFinalPanel.setLayout(new BorderLayout());
//center side of then main panel
JPanel statisticsPanelCenter = new JPanel();
statisticsPanelCenter.setBorder(BorderFactory.createEtchedBorder(EtchedBorder.LOWERED));
//create a dataset
DefaultPieDataset pieDataSet = new DefaultPieDataset();
//add values to dataset
pieDataSet.setValue("Deposit:", depositCount);
pieDataSet.setValue("Withdraw:", withdrawCount);
pieDataSet.setValue("Transfer:", transferCount);
//create a 3D chart with the given title that appears above the chart
JFreeChart chart = ChartFactory.createPieChart3D(" ", pieDataSet, true, false, true);
final ChartPanel chartPanel = new ChartPanel(chart);
chartPanel.setPreferredSize(new Dimension(315, 195));
chartPanel.setBorder(BorderFactory.createEtchedBorder(EtchedBorder.LOWERED));
//declare a pieplot so we can customize the chart
PiePlot3D plot = (PiePlot3D) chart.getPlot();
plot.setInsets(new RectangleInsets(-6.0, 5.0, 5.0, 5.0));
plot.setDirection(Rotation.CLOCKWISE);
plot.setIgnoreZeroValues(true);
plot.setLabelGenerator(new StandardPieSectionLabelGenerator("{0} {1} ({2})"));
plot.setDepthFactor(0.1);
plot.setCircular(true);
plot.setDarkerSides(true);
//create a timer for animation
rotate3DPieChart = new Timer(150, new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
//set the start angle, this increases everytime timer is executed
plot.setStartAngle(pieChartThreadIterator = pieChartThreadIterator + 0.6);
}
});
//south side
JPanel statisticsPanelSouth = new JPanel();
statisticsPanelSouth.setBorder(BorderFactory.createEtchedBorder(EtchedBorder.LOWERED));
JButton transactionsCount = new JButton("Count");
statisticsPanelSouth.add(transactionsCount);
transactionsCenterFinalPanel.add(chartPanel, BorderLayout.CENTER);
transactionsCenterFinalPanel.add(statisticsPanelSouth, BorderLayout.SOUTH);
transactions.add(transactionsCenterFinalPanel, BorderLayout.CENTER);
//start the timer (animation starts!)
rotate3DPieChart.start();
revalidate();
}
Note: Using a plot for the chart, then set plot.setBackgroundPaint(Color.GRAY) doesn't do any good. It only changes the background inside outline. I want it all to be gray. How can I do that ?


