Hi
I need to draw a chart to an axe position.
For example, when i set leftAxis.EndtPosition = 50, i need that the 50 value it will be in pixels not a percent value.
How can i do that?
Because, When i do this
leftAxis.StartPosition = 0;
leftAxis.EndtPosition = 50;
and my graph grow up, the end position always set in the midle of the axis.
Thanks in advance
Axis Position
Re: Axis Position
Hello Tenaris,
If you want that Start and End positions are pixels, you need use property of axes StartEndPositionUnits as do in below line:
I hope will helps.
Thanks,
If you want that Start and End positions are pixels, you need use property of axes StartEndPositionUnits as do in below line:
Code: Select all
axis.StartEndPositionUnits = Steema.TeeChart.PositionUnits.Pixels;
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |