I want to set the property "IsGlobalDrawingTool" of a Custom Drawing Tool by source code, but it's readonly and can't change if I want it draw on All Charts.
I tried other option i saw in forum;
foreach (DrawingTool draw in DrawObjects.ToList())
{
DrawingTool.SetDrawingToolCommonValues(draw, draw.Tag, draw.IsAutoScale, this, true);
}
But I can't use DrawObjects.ToList() because it's static and throw an error.
Thanks.

Comment