TeeChart +系列Legend CheckBox

时间:2013-08-12 12:03:07

标签: activex teechart

目前我在Legends中显示CheckBox。是否有任何可以查看Legend用户点击的事件。

由于 阿克沙伊

1 个答案:

答案 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