I want to dynamically adjust the postion of an arrow, but its Base and Tip are read-only fields.
How about making them editable?
var plotCtrl = new ScottPlot.Plot();
var myArrow = plotCtrl.Plot.AddArrow(xBase, yBase, xTip, yTip);
plotCtrl.Reflesh();
myArrow.Base.X = xBaseNew;
myArrow.Base.Y = yBaseNew;
myArrow.Tip.X = xTipNew;
myArrow.Tip.Y = yTipNew;
plotCtrl.Reflesh();