目前我在Legends中显示CheckBox。是否有任何可以查看Legend用户点击的事件。
由于 阿克沙伊
答案 0 :(得分:1)
是的,使用 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