Search found 7 matches
- Thu Aug 09, 2007 3:25 pm
- Forum: VCL
- Topic: Showing Series Label Below Each Pie Chart and Mark Position
- Replies: 11
- Views: 138484
Maybe you could solve this much easily. You could align the chart to the form I wish it were that simple. I want to show pies in a different orientation than the default which causes me to set the series Rects myself. The chart is aligned to the form/panel. If the panel could not be resized, I woul...
- Wed Aug 08, 2007 6:17 pm
- Forum: VCL
- Topic: TMarksTipTool or Custom Hint Popups
- Replies: 2
- Views: 6142
- Wed Aug 08, 2007 6:12 pm
- Forum: VCL
- Topic: Showing Series Label Below Each Pie Chart and Mark Position
- Replies: 11
- Views: 138484
I think he used OnBeforeDrawValues event (as demonstrated in TeeChart "Multiple Pies" demo) with a little twist You are correct. I used the following code. procedure TMyChart.CustomBeforeDrawValues(Sender: TObject); var TempIndex, TempWidth : integer; begin TempIndex := SeriesList.IndexOf(Sender); ...
- Tue Aug 07, 2007 11:32 pm
- Forum: VCL
- Topic: Showing Series Label Below Each Pie Chart and Mark Position
- Replies: 11
- Views: 138484
Do you try to achieve an effect like this http://imajr.com/th/pies_253953.gif ? Not really, I'm looking for something more like this. Current display: http://imajr.com/th/pies_current.bmp_253997.jpg What I want to display: http://imajr.com/th/pies_want.bmp_253999.jpg If you use D7, that was shipped...
- Tue Aug 07, 2007 9:19 pm
- Forum: VCL
- Topic: TMarksTipTool or Custom Hint Popups
- Replies: 2
- Views: 6142
TMarksTipTool or Custom Hint Popups
I am using D7 and Tee8. I would like to have custom hints popup that shows a bunch of information related to the series/value below the mouse. I've tried the TMarksTipTool and OnGetText event. This would work if there was a way to tell what Series/XY coord the Tip Tool is displaying. Using the TMark...
- Tue Aug 07, 2007 7:30 pm
- Forum: VCL
- Topic: Showing Series Label Below Each Pie Chart and Mark Position
- Replies: 11
- Views: 138484
Try to change Series Marks Callout Distance and Length properties to negative like this Marks.Callout.Distance = -11 Marks.Callout.Length = -9 Seems produces desired effect. It helps with moving the mark labels on top of the pie slices, but the margins between each pie series are still huge. It cha...
- Fri Aug 03, 2007 10:50 pm
- Forum: VCL
- Topic: Showing Series Label Below Each Pie Chart and Mark Position
- Replies: 11
- Views: 138484
Showing Series Label Below Each Pie Chart and Mark Position
I am using D7 and Tee8. I have 3 pie series in a single TChart which are displayed horz. I would like to have the series name below each one. Is this possible? Also, I would like to have the pie marks show up on top of the pie slices. The reason for this is because when marks are displayed, the char...