Dundas.SharePoint.Charting.WebParts Send comments on this topic.
Path Property
See Also 
Dundas.Charting.WebControl Namespace > PolylineAnnotation Class : Path Property


Gets or sets the path points of the polyline at run-time.

Syntax

Visual Basic (Declaration)  
<BrowsableAttribute(False)>
<DefaultValueAttribute()>
<DescriptionAttribute("Gets or sets an annotation's path points at run-time.")>
<SerializationVisibilityAttribute()>
<CategoryAttribute("Position")>
<DesignerSerializationVisibilityAttribute()>
Public Overridable Property Path As GraphicsPath
Visual Basic (Usage) Copy Code
Dim instance As PolylineAnnotation
Dim value As GraphicsPath
 
instance.Path = value
 
value = instance.Path
C#  
[BrowsableAttribute(false)]
[DefaultValueAttribute()]
[DescriptionAttribute("Gets or sets an annotation's path points at run-time.")]
[SerializationVisibilityAttribute()]
[CategoryAttribute("Position")]
[DesignerSerializationVisibilityAttribute()]
public virtual GraphicsPath Path {get; set;}

Return Value

A GraphicsPath object with the polyline shape.

Remarks

A polyline must use coordinates relative to the annotation object, where 0,0 is the top-left coordinate and 100,100 is the bottom-right coordinate of the annotation.

This property is not accessible at design time (at design-time use the PathPoints property instead).

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