Pie Chart with multiple level

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
GoToXY
Newbie
Newbie
Posts: 81
Joined: Thu Apr 03, 2008 12:00 am

Pie Chart with multiple level

Post by GoToXY » Wed Dec 15, 2010 4:47 pm

Hi, i would like to know if there is a way i can go deeper in detailling the pie slice.

What i mean is, i would like to be able to make 2 slice (first named Natural Gaz and the second, Electricity).
I want to be able to slice the 2 slice again. Ex: Electricity could be cut in 3 new slice: Heating, Cooling, Service.

Any idea if it is possible to do that ?

Im using TeeChart v8.07

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Pie Chart with multiple level

Post by Yeray » Fri Dec 17, 2010 12:32 pm

Hi GoToXY,

Won't it look like having 4 slices (Gaz, Electricity-Heating, Electricity-Cooling, Electricity-Service)?
Could you please show us a picture of how you would like it to look?
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

GoToXY
Newbie
Newbie
Posts: 81
Joined: Thu Apr 03, 2008 12:00 am

Re: Pie Chart with multiple level

Post by GoToXY » Fri Jan 21, 2011 3:36 pm

Hi,
sorry i did forgot about this thread.

Ok, well after meeting with the dev group, we conclude that we would like to be able to exploded multiple slice groups. is it possible in v8.07 ?

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Pie Chart with multiple level

Post by Yeray » Mon Jan 24, 2011 11:55 am

Hi GoToXY,

I'm afraid you cannot explode groups of slices together. This is a feature request already in the wish list for the .NET version [TF02014578].
I've added it as a wish list for the VCL too (TV52015362).

What you can do right now is to explode as slices as you want individually:

Code: Select all

procedure TForm1.FormCreate(Sender: TObject);
begin
  Series1.FillSampleValues(10);

  Series1.ExplodedSlice.Value[0]:=10;
  Series1.ExplodedSlice.Value[1]:=10;

  Series1.ExplodedSlice.Value[4]:=20;
  Series1.ExplodedSlice.Value[5]:=20;
end;
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

GoToXY
Newbie
Newbie
Posts: 81
Joined: Thu Apr 03, 2008 12:00 am

Re: Pie Chart with multiple level

Post by GoToXY » Tue Jan 25, 2011 1:04 pm

Thanks for the reply.

Will the v8 be update or only the 2010 ?


Thanks

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Pie Chart with multiple level

Post by Yeray » Tue Jan 25, 2011 1:14 pm

Hi GoToXY,

You mean if this feature request [TV52015362] will be included in v8? I don't think so. We usually add the new features in the latest version. Of course it depends on how difficult would be moving the feature from v2010 to v8 sources.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply