i have a,b,c d as 4 series and need to show only a ,c legend titles in legend .
should not remove/deselect othere series b,d from the chart ...
need help asap
how to show few series in legend with out removing/deselecti
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi daryl,
You could try using ShowInLegend property like this:
You could try using ShowInLegend property like this:
Code: Select all
TChart1.Series(0).ShowInLegend = True
TChart1.Series(1).ShowInLegend = False
TChart1.Series(2).ShowInLegend = True
TChart1.Series(3).ShowInLegend = False
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 |