gpt4 book ai didi

java - JFreechart 中漂亮的饼图

转载 作者:行者123 更新时间:2023-12-02 00:01:12 25 4
gpt4 key购买 nike

是否有可能在 JFreechart 中为饼图获得复杂、漂亮的颜色?我的意思是我怎样才能获得像 link 中所示的图像的颜色?

是否可以使用 RGB 格式,还是需要使用其他格式?我们怎样才能做到呢。谢谢你的帮助

最佳答案

您可以使用 PiePlot.setSectionPaint 为每个饼图切片使用 RGB 值指定颜色.

这是一个例子:

  DefaultPieDataset result = new DefaultPieDataset();
result.setValue("1", 40.);
result.setValue("2", 30.);
result.setValue("3", 20.);
result.setValue("4", 10.);
JFreeChart chart = ChartFactory.createPieChart3D("", result, true, true, false);
PiePlot3D plot = (PiePlot3D) chart.getPlot();
plot.setBackgroundPaint(new Color(255, 255, 255, 0));
plot.setSectionPaint("1", new Color(31, 73, 125));
plot.setSectionPaint("2", new Color(192, 80, 77));
plot.setSectionPaint("3", new Color(155, 187, 89));
plot.setSectionPaint("4", new Color(128, 100, 162));

关于java - JFreechart 中漂亮的饼图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14819336/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com