I've created a PointValueHandler, and added the event using:
this.zg1.PointValueEvent += new ZedGraph.ZedGraphControl.PointValueHandler(this.myPointValueHandler2);
However myPointValueHandler2 never gets called.
I have a similar event for MouseDoubleClick, which gets called perfectly.
The only difference I can see is that the MouseDoubleClick event method returns a void, where myPointValueHandler2 returns a string. The form designer by default adds a void method, which I manually changed to a string return.
What could I be doing wrong?