Arc

View as Markdown

Definition

Represents an interface that exposes information regarding an Arc IDrawingTool.

Methods and Properties

ParameterDescription
StartAnchorAn IDrawingTool’s ChartAnchor representing the starting point of the drawing object
EndAnchorAn IDrawingTool’s ChartAnchor representing the end point of the drawing object
AreaBrushA Brush object representing the fill color of the draw object
AreaOpacityAn int value representing the opacity of the area color
ArcStrokeThe Stroke object used to draw the arc line of the object’s outline
StrokeThe Stroke object used to draw the straight line of the object’s outline

Example

1// Draw an Arc object
2Arc myArc = Draw.Arc(this, "myArc", Time[10], Close[10], Time[0], Close[0], Brushes.Blue);
3
4// Set the opacity of the shading between the arc and the chord
5myArc.AreaOpacity = 100;