Plots[0].Pen.Width = 2;
This is giving me the following error:
´system.windows.media.pen´does not contain a definition for Width accepting a first argument of type ´system.windows.media.pen´could be found (are you missing a using directive or an assembly reference?
Then next error:
Draw.Region(this,"StdErrorSmooth1", CurrentBar, 0, Lower2, Lower, Brushes.Empty, LowerColor, OpacityOuter);
Draw.Region(this,"StdErrorSmooth2", CurrentBar, 0, Lower, Upper, Brushes.Empty, MiddleColor, OpacityMiddle);
Draw.Region(this,"StdErrorSmooth3", CurrentBar, 0, Upper, Upper2, Brushes.Empty, UpperColor, OpacityOuter);
Giving the following error:
System.windows.media.brushes´does not contain a defenition for ´empty´
What do I have to change?
Thanks

Comment