Dundas.SharePoint.Charting.WebParts Send comments on this topic.
AddEllipse Method
See Also 
Dundas.Charting.WebControl Namespace > AnnotationCollection Class : AddEllipse Method


name
Name of the annotation. Use an empty string to automatically assign a unique name.
x
X coordinate of the annotation.
y
Y coordinate of the annotation.
width
Width of the annotation.
height
Height of the annotation.
Adds a new ellipse annotation to the end of the collection.

Syntax

Visual Basic (Declaration)  
Public Function AddEllipse( _
   ByVal name As String, _
   ByVal x As Double, _
   ByVal y As Double, _
   ByVal width As Double, _
   ByVal height As Double _
) As Integer
Visual Basic (Usage) Copy Code
Dim instance As AnnotationCollection
Dim name As String
Dim x As Double
Dim y As Double
Dim width As Double
Dim height As Double
Dim value As Integer
 
value = instance.AddEllipse(name, x, y, width, height)
C#  
public int AddEllipse( 
   string name,
   double x,
   double y,
   double width,
   double height
)

Parameters

name
Name of the annotation. Use an empty string to automatically assign a unique name.
x
X coordinate of the annotation.
y
Y coordinate of the annotation.
width
Width of the annotation.
height
Height of the annotation.

Return Value

Index of the added object.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also