Series Point's
Series Point's
When I have series with lots of points, I want to draw a point style square every ten points instead of every point. Is that possible ?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Hans,
Yes, this is possible implementing the OnGetSeriesPointerStyle event as here:
Yes, this is possible implementing the OnGetSeriesPointerStyle event as here:
Code: Select all
Private Sub TChart1_OnGetSeriesPointerStyle(ByVal SeriesIndex As Long, ByVal ValueIndex As Long, AStyle As TeeChart.EPointerStyle)
If (ValueIndex Mod 10 = 0) Then
AStyle = psRectangle
Else
AStyle = psNothing
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 |