When I use the statement below I get an error saying that loAscending does not exist.
Is there a full qualifier foer this variable?
Series order loAscending
Series order loAscending
When I use the statement below I get an error saying that loAscending does not exist.
axTChart2.Series(seriesNum).XValues.Order = loAscending;
Is there a full qualifier for this variable
axTChart2.Series(seriesNum).XValues.Order = loAscending;
Is there a full qualifier for this variable
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Chuck,
You can try something like this:
You can try something like this:
Code: Select all
this.axTChart1.Series(0).XValues.Order = TeeChart.EValueListOrder.loAscending;
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Chuck,
Yes, you need to use this feature like this:
Yes, you need to use this feature like this:
Code: Select all
axTChart1.Series(0).XValues.Order = TeeChart.EValueListOrder.loAscending;
axTChart1.Series(0).XValues.Sort();
axTChart1.Series(0).YValues.FillSequence();
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 |