I have 4 series.
series 1 is a line
series 2 is a bar
series 3 is a line
series 4 is a bar
If series 2 and 3 are active, then the bar is in front of the line. Is there a way using methods or properties to make it so that the line appears in front of the bar? I want to do this using Delphi code.
Thanks.
Moving a line series so it shows in front of a bar series
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi AOS Dev,
If you want to switch Series2 and Series3 positions use:
ExchangeSeries arguments are the indexes of the series you want to switch positions.
If you want to switch Series2 and Series3 positions use:
Code: Select all
Chart1.ExchangeSeries(1,2);
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 |