Hello,
On the chart we can see that the BarSeries are orderd by the yellow color.
Is there is a quickly method to order it by the purple color?
Thanks for help
Regards
TBarSeries and Order
TBarSeries and Order
- Attachments
-
- Graphique_OccStatus0.jpg (75.09 KiB) Viewed 6825 times
Re: TBarSeries and Order
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: TBarSeries and Order
no this is not what i want.
In the case the yellow bar graph is in descendant order.
I would like in an other case to order the purple bar in descendant order by calling one function.
Of course i am able to recalculate all the point values in order to do that but perhaps you have it in your methods.
Regards
In the case the yellow bar graph is in descendant order.
I would like in an other case to order the purple bar in descendant order by calling one function.
Of course i am able to recalculate all the point values in order to do that but perhaps you have it in your methods.
Regards
Re: TBarSeries and Order
I think "sorted" in order of "ordered" is more correct
Re: TBarSeries and Order
Hi Calou,
If you want to Order a Series by the YValues ValueList, you can do it by:
If you want to Order a Series by the YValues ValueList, you can do it by:
Code: Select all
Chart1[1].YValues.Order:=loDescending;
Chart1[1].CheckOrder;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |