Hi
Is there a place where I can see the differences between ActiveX and .Net version of TChart properties, methods and interfaces?
What I'm looking for is this:
In activeX I had the following:
xxx.Axis.Custom(number).PositionPercent = value
I don't know what to call i .net, since PositionPercent is not available.
/M
ActiveX vs .Net
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Michal,
We don't have such a resource available. However you can ask here any doubt you may have. In that case, the equivalent property is:
We don't have such a resource available. However you can ask here any doubt you may have. In that case, the equivalent property is:
Code: Select all
tChart1.Axes.Custom[0].RelativePosition = value;
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 |