Hi
I'm using TeeChart Pro v2 for Visual Studio .NET 2003
In your TeeChart Charting Library you say that creating extra axes is possible via a few lines of code,and one line of the code is like this:
axis1.PositionPercent = 20;
But the "PositionPercent " doesn't exist in the axes properties.
and when I use the "Position" Property like this:
WebChart1.Chart.Axes.Left.PositionUnits = Steema.TeeChart.PositionUnits.Percent;
WebChart1.Chart.Axes.Left.Position = 20;
the error is :"Steema.TeeChart.Axis.Position" is read only!
How to solve this problem?
Best regards
"PositionPercent" property doesn't exist in axes p
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi swip,
You should use RelativePosition instead:
You should use RelativePosition instead:
Code: Select all
WebChart1.Chart.Axes.Left.RelativePosition = 20;
Best Regards,
Narcís Calvet / 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 |