I am getting the following error
Error on calling 'OnBarUpdate' method on bar 5: Cannot set a property on object '#FFFFC0CB' because it is in a read-only state.
The object in question is
ChartControl.Dispatcher.InvokeAsync((Action)(() =>
{
Dotp myDraw = DrawPlus.Dotp(this,"dot"+CurrentBar,true,0,myDot[0],dotBrush,myDotSize,Brushes.Transparent);
myDraw.AreaBrush.Opacity = 50;
}));
if I remove the opacity property it works just fine so clearly there's the issue.
Is there any way I can set the opacity?

Comment