TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
-
bertrod
- Advanced
- Posts: 151
- Joined: Wed Sep 07, 2005 4:00 am
Post
by bertrod » Mon Apr 03, 2006 9:46 am
Hello,
I would like to find the Y-pixel which is the maximum point that an axis can have. I mean the Top point of the Backwall.
See my pic :
I can't use axis.maximum value because the axis can have a startPositionPercent <> 0.
I tried to use the chart.walls.back.shapebounds.Top, but it returns me 0.
Last edited by
bertrod on Mon Apr 03, 2006 10:31 am, edited 1 time in total.
-
Narcís
- Site Admin

- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
-
Contact:
Post
by Narcís » Mon Apr 03, 2006 10:03 am
Hi bertrod,
Have you tried using:
Code: Select all
Chart1.ChartRect.Left;
Chart1.ChartRect.Top;
-
bertrod
- Advanced
- Posts: 151
- Joined: Wed Sep 07, 2005 4:00 am
Post
by bertrod » Mon Apr 03, 2006 10:30 am
Thank you, it was just what I needed

I should have found it by myself.