ReferencesCommonDrawingDraw.TimeCycles()TimeCyclesAsk a question|Copy page|View as Markdown|More actionsDefinition Represents an interface that exposes information regarding a TimeCycles IDrawingTool. Methods and Properties ParameterDescriptionAnchorAn IDrawingTool’s ChartAnchor representing the point of the drawing objectOutlineStrokeA Stroke used for the outline of the regionAreaBrushA Brush object representing the fill color of the draw object Examples 1// Instantiate a Time Cycles object2TimeCycles myTimeCycles = (this, "tag1", 0, 10, Brushes.CornflowerBlue, Brushes.CornflowerBlue, 40);34// Change the object's OutlineBrush5myTimeCycles.OutlineStroke = new Stroke(Brushes.Red);