Visual Basic 2008 Express/TChart .NET 3.2.2945.19738
and
Visual Basic 2005 Express/TChart .NET 3.2.2894.29191
When I double-click on a series, the ClickSeries event is fired 3 times. The first time, e.Clicks is 1. The second and third times, e.Clicks is 2.
If I put an if statement in my ClickSeries event handler that opens another form:
Code: Select all
If e.Clicks = 2 Then
SomeForm.ShowDialog()
End If
Jay