Trying to bridge the gap from the wizard to the editor… what script syntax changes are needed to save plot style color and size?
my searches show suggestions
// Adds a blue Dash-Line style plot with 5pixel width and 50% opacity
AddPlot(new Stroke(Brushes.Blue, DashStyleHelper.Dash, 5, 50), PlotStyle.Line, “MyPlot3”);
My example code
SMA2.Plots[0].Brush = Brushes.Snow;
would need to be ??
SMA2.Plots[0].Brush = Brushes.Blue.DashStyleHelper.Dash 5.50. PlotStyle.Line;
this is where i am lost with the object syntax.