OxyPlot's PlotModel and PlotController components contains their own Mouse Handlers, to which you can add or remove you own Handlers. For Instance:
this.Model.MouseMove += this.ModelOnMouseMove;
public void ModelOnMouseMove(object sender, OxyMouseDownEventArgs e)
{
// Do some mouse stuff...
}
Is there a way for the Model to capture KeyBoard Key presses in a similiar manner?