HOW TO set the SELECTED MARKS VISIBLE TRUE/FALSE
( in a series i want to set first 3 marks to true , next 2 marks to false , final marks to true )
HOW TO set the SELECTED MARKS VISIBLE TRUE/FALSE
-
- 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 Form_Load()
TChart1.Series(0).FillSampleValues 6
End Sub
Private Sub TChart1_OnGetSeriesMark(ByVal SeriesIndex As Long, ByVal ValueIndex As Long, MarkText As String)
If ((ValueIndex > 2) And (ValueIndex < 5)) Then
MarkText = ""
End If
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 |