Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Currently I Am displaying CheckBox in Legends.Is there any Event using which I can Find out on which Legend user have clicked.
Thanks Akshay
是的,使用OnClickLegend事件,例如:
Private Sub TChart1_OnClickLegend(ByVal Button As TeeChart.EMouseButton, ByVal Shift As TeeChart.EShiftState, ByVal X As Long, ByVal Y As Long) Me.Caption = "Clicked legend item: " & CStr(TChart1.Legend.Clicked(X, Y)) End Sub