ChartCircle constructor that allows for a circle color and width to be specified.

Namespace:  RightEdge.Common.ChartObjects
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
public ChartCircle(
	ChartPoint centerPoint,
	ChartPoint outerPoint,
	Color color,
	int width
)
Visual Basic (Declaration)
Public Sub New ( _
	centerPoint As ChartPoint, _
	outerPoint As ChartPoint, _
	color As Color, _
	width As Integer _
)
Visual C++
public:
ChartCircle(
	ChartPoint centerPoint, 
	ChartPoint outerPoint, 
	Color color, 
	int width
)

Parameters

centerPoint
Type: RightEdge.Common..::.ChartPoint
A non-empty, valid ChartPoint object that represents the center point of the circle.
outerPoint
Type: RightEdge.Common..::.ChartPoint
A non-empty, valid ChartPoint object that represents the outer point of the circle.
color
Type: System.Drawing..::.Color
Color of the circle.
width
Type: System..::.Int32
Width of the circle.

See Also