如何更改 3dPieChart (JFreeChart API) 的背景/透明度?

How do I change the background / transparency of a 3dPieChart (JFreeChart API)?

我已经声明了一个 3DPieChart,我想更改它的背景/透明度。在这种情况下,'background' 我的意思是白色 space.

下面是实现此图表的函数,如果它对您有所帮助的话。

    //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();
}

注意:为图表使用绘图,然后设置 plot.setBackgroundPaint(Color.GRAY) 没有任何好处。它只会改变轮廓内的背景。我希望一切都是灰色的。我怎样才能做到这一点 ?

示例中图表周围的白色 space 是图表的背景。您可以设置图像 and/or 半透明颜色,如下所示。用 50% 透明黄色着色的灰色图像。

JFreeChart pieChart = ChartFactory.createPieChart3D(…);
try {//https://www.pinterest.com/pin/79516749641165970/
    pieChart.setBackgroundImage(ImageIO.read(new URL(
        "https://s-media-cache-ak0.pinimg.com/736x/bb/bf/bf/bbbfbfd869f20db50d3dd4943790020f.jpg")));
} catch (IOException ex) {
    ex.printStackTrace(System.err);
}
pieChart.setBackgroundPaint(new Color(0x7fffff00, true));

使用 setBackgroundImageAlpha() 可以获得略微不同的效果。

pieChart.setBackgroundPaint(Color.yellow);
pieChart.setBackgroundImageAlpha(0.5f);