I added the following example to the 'example browser':
It has not yet been decided whether the mouse events should go...
https://oxyplot.codeplex.com/workitem/10132
var annotation = new RectangleAnnotation() { MinimumX = 10, MaximumX = 60, MinimumY = 10, MaximumY = 20 }; plotModel.Annotations.Add(annotation); int i = 0; annotation.MouseDown += (s, e) => { annotation.Text = "Clicked " + (++i) + " times."; plotModel.InvalidatePlot(false); };
https://oxyplot.codeplex.com/workitem/10132