Hello, the MS documentation has me confused. It says for the LegendSelected Event the syntax is

VB Code:
  1. Private Sub object_LegendSelected (mouseFlags As Integer, cancel As Integer)

So, shouldn't:

VB Code:
  1. Private Sub ReadingChart_LegendSelected(Byval mouseflags As Integer, Byval cancel As Integer) Handles ReadingChart.LegendSelected

work? It's complaining that the event handler signature does not match the LegendSelected method signature.

What am I doing wrong?