A discussion forum for JFreeChart (a 2D chart library for the Java platform).
-
John
Post
by John » Thu Nov 13, 2003 10:57 am
How can I make a transparent pie 3D chart ?
-
Jeffh
- Posts: 13
- Joined: Thu Oct 09, 2003 9:47 am
Post
by Jeffh » Thu Nov 13, 2003 11:04 am
Pieplot plot = (PiePlot) chart.getPlot();
plot.setAlphaForeground(0.5f);
You can modify that number yourself how you want, the lower it
is the more "transparency" you get.
Jeff