'how to drag and drop point in oxyplot,i have no idea

i'm using oxyplot,i want to drag point in scatter series,but i hava no idea.

i tried to add OnMouseMove but its not work.

var _model0 = new PlotModel();

//axes
_model0.Axes.Add(new LinearAxis { Position = AxisPosition.Left, Minimum = -24, Maximum = 
12, IsZoomEnabled = false });
_model0.Axes.Add(new LogarithmicAxis { Position = AxisPosition.Bottom, Minimum = 20, 
Maximum = 20000, TickStyle = TickStyle.None, IsZoomEnabled = false });
//series
var s = new AreaSeries();
s.MouseMove += (s, e) =>{ MessageBox.Show("1");};
_model0.Series.Add(s);

enter image description here the pic is follow:



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source