Is it possible to set individual mark call out length ..?
now i am using this to change the entire series marks callout length
tchart1.series(i).marks.callout.length
i want to set each mark in series different callout.length
aravind
Is it possible to set individual mark call out length
Hi aravind,
you can do :
you can do :
Code: Select all
Private Sub TChart1_OnGetSeriesMark(ByVal SeriesIndex As Long, ByVal ValueIndex As Long, MarkText As String)
If ValueIndex = 0 Then
TChart1.Series(0).Marks.Callout.Length = 100
Else
TChart1.Series(0).Marks.Callout.Length = 10
End If
End Sub
Pep Jorge
http://support.steema.com
http://support.steema.com