how to set visibility on and off through code for all marks in all series
in dialog box series-marks -there is option all series visible where we can switch on/off marks for all series visiblity .
i want to do the same thing through the code ...
how can we set that property
pls advise me
aravind
how to set through code marks visible
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Aravind,
You can do something like this:
You can do something like this:
Code: Select all
Private Sub Command1_Click()
For i = 0 To TChart1.Series.Count - 1
TChart1.Series(i).Marks.Visible = Not TChart1.Series(i).Marks.Visible
Next
End Sub
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 |