Construct a ChartEllipse object.

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

Syntax

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

Parameters

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

See Also