Page 1 of 1

[Solved] How to get the max axis pixel point ?

Posted: Mon Apr 03, 2006 9:46 am
by 9343260
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 :
Image

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.

Posted: Mon Apr 03, 2006 10:03 am
by narcis
Hi bertrod,

Have you tried using:

Code: Select all

  Chart1.ChartRect.Left;
  Chart1.ChartRect.Top;

Posted: Mon Apr 03, 2006 10:30 am
by 9343260
Thank you, it was just what I needed 8) I should have found it by myself.