TimeCycles

View as Markdown

Definition

Represents an interface that exposes information regarding a TimeCycles IDrawingTool.

Methods and Properties

ParameterDescription
AnchorAn IDrawingTool’s ChartAnchor representing the point of the drawing object
OutlineStrokeA Stroke used for the outline of the region
AreaBrushA Brush object representing the fill color of the draw object

Examples

1// Instantiate a Time Cycles object
2TimeCycles myTimeCycles = (this, "tag1", 0, 10, Brushes.CornflowerBlue, Brushes.CornflowerBlue, 40);
3
4// Change the object's OutlineBrush
5myTimeCycles.OutlineStroke = new Stroke(Brushes.Red);