From: Eyunni S. <sr...@re...> - 2004-02-02 06:24:44
|
hi,=0AI want to embed one PIE chart into another.=0AThe first chart has =0A= int i=3D4;=0Aint j=3D5;=0Aint k=3D6;=0Aint h=3D9;=0A=0Adouble[] data=3D {h,= i,j,k};=0AString[] labels=3D { "AA","BB","CC","DD"}; =0APaint[] pai= nts=3D { new Color(255,204,0),new Color(51,153,255),new Color(51,153,255),n= ew Color(51,153,255)};=0A=0AThe second chart has:=0Aint m=3Di+j+k;=0Adouble= [] data=3D {h,m};=0AString[] labels=3D { "Total of AA","Total of BB CC DD"}= ; =0APaint[] paints=3D { new Color(255,204,0),new Color(51,153,255)= };=0A=0Athe second chart should show me the subset of the first charts data= .=0Athe inner Pie chart should show the normal data and the outer PIE chart= should show the totals of the inner chart.=0Acan anyone help me in doing = this=0AThaks=0A=0A=0A |