For some reason when I set the PlotStyle of StrategyPlot to Dot it will no longer change color.
This works fine for example:
StrategyPlot(index).Plots[0].PlotStyle = PlotStyle.Square;
StrategyPlot(index).Plots[0].Pen.Color = Color.Green;
but this just draws the plot in a color that looks like HotPink.
StrategyPlot(index).Plots[0].PlotStyle = PlotStyle.Dot;
StrategyPlot(index).Plots[0].Pen.Color = Color.Green;
any ideas?

Comment