Display a 3D pie
Set the 3D angle
Set the 3D depth
Set the selection style Detach individual slices

Display 3D pie.

<applet code=com.objectplanet.chart.PieChartApplet
 archive=chart.jar width=300 height=200>
<param name=sampleValues value="10,20,30,40,50">
<param name=3DModeOn value=true>
</applet>

Set the angle of the 3D pie. The angle range is 10-90.

<applet code=com.objectplanet.chart.PieChartApplet
 archive=chart.jar width=300 height=200>
<param name=sampleValues value="10,20,30,40,50">
<param name=3DModeOn value=true>
<param name=angle value=60>
</applet>

Set the depth of the 3D pie. The depth range is 0.1-1.0

<applet code=com.objectplanet.chart.PieChartApplet
 archive=chart.jar width=300 height=200>
<param name=sampleValues value="10,20,30,40,50">
<param name=3DModeOn value=true>
<param name=angle value=60>
<param name=depth value=0.1>
</applet>

Set the selection style.

<applet code=com.objectplanet.chart.PieChartApplet
 archive=chart.jar width=300 height=200>
<param name=sampleValues value="10,20,30,40,50">
<param name=selectionStyle value="triangle">
</applet>

<applet code=com.objectplanet.chart.PieChartApplet
 archive=chart.jar width=300 height=200>
<param name=sampleValues value="10,20,30,40,50">
<param name=selectionStyle value="circle">
</applet>

<applet code=com.objectplanet.chart.PieChartApplet
 archive=chart.jar width=300 height=200>
<param name=sampleValues value="10,20,30,40,50">
<param name=selectionStyle value="detached">
</applet>

Detach slices.

<applet code=com.objectplanet.chart.PieChartApplet
 archive=chart.jar width=300 height=200>
<param name=sampleValues value="10,20,30,40,50">
<param name=3DModeOn value="true">
<param name=detachedSlices value="1,2">
<param name=detachedDistance value="0.2">
</applet>