Page 1 of 1
Series order loAscending
Posted: Thu Aug 24, 2006 9:10 am
by 9089490
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
Posted: Thu Aug 24, 2006 9:11 am
by 9089490
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
Posted: Thu Aug 24, 2006 9:29 am
by narcis
Hi Chuck,
You can try something like this:
Code: Select all
this.axTChart1.Series(0).XValues.Order = TeeChart.EValueListOrder.loAscending;
Posted: Thu Aug 24, 2006 9:32 am
by 9089490
Thanks, Does the order function work for bubble charts. The x axis values do not seem to chage if you use loascedning or lodesceding??
Posted: Thu Aug 24, 2006 9:45 am
by narcis
Hi Chuck,
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();