ReferencesCommonDrawingDraw.Dot()DotAsk a question|Copy page|View as Markdown|More actionsDefinition Represents an interface that exposes information regarding a Dot IDrawingTool. Methods and Properties ParameterDescriptionAnchorAn IDrawingTool’s ChartAnchor representing the point of the drawing objectAreaBrushA Brush object representing the fill color of the draw objectOutlineBrushA Brush object representing the color of the draw object’s outline Examples 1// Instantiates a red dot on the current bar 1 tick below the low2Dot myDot = Draw.Dot(this, "tag1", true, 0, Low[0] - TickSize, Brushes.Red);34// Disable the dot's Auto Scale property5myDot.IsAutoScale = false;