Custom pointers
Posted: Thu Jan 22, 2004 10:29 am
Hello,
is there any way to mark specific points with custom icons?
nefis
is there any way to mark specific points with custom icons?
nefis
Steema Software - Customer Support Forums
http://216.92.243.79/support/
I didn't find the event OnGetPointerStyle in my TeeChart version 6.0.0.4Pep wrote: Or change the PointerStyle for any point using the OnGetPointerStyle event.
Yes, sorry I refer to the "OnGetSeriesPointerStyle" event.I didn't find the event OnGetPointerStyle in my TeeChart version 6.0.0.4
There is OnGetSeriesPointerStyle which allows to change pointer style for PointerSeries. But I don't know how it can be used not to show any
pointer at all
Code: Select all
Private Sub TChart1_OnGetSeriesPointerStyle(ByVal SeriesIndex As Long, ByVal ValueIndex As Long, AStyle As TeeChart.EPointerStyle)
If ValueIndex = 1 Then
TChart1.Series(0).asPoint.Pointer.Style = psNothing
Else
TChart1.Series(0).asPoint.Pointer.Style = psRectangle
End If
End Sub