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


pen
Pen object that determines the color, width, and style of the line.
pt1
PointF structure that represents the first point to connect.
pt2
PointF structure that represents the second point to connect.
color
Animated Color
pt1A
Animated First Point
pt2A
Animated Second Point
Draws a line connecting two PointF structures.

Syntax

Visual Basic (Declaration)  
Public Sub DrawLineAnimation( _
   ByVal pen As Pen, _
   ByVal pt1 As PointF, _
   ByVal pt2 As PointF, _
   ByRef color As ColorA, _
   ByRef pt1A As PointA, _
   ByRef pt2A As PointA _
) 
Visual Basic (Usage) Copy Code
Dim instance As ChartRenderingEngine
Dim pen As Pen
Dim pt1 As PointF
Dim pt2 As PointF
Dim color As ColorA
Dim pt1A As PointA
Dim pt2A As PointA
 
instance.DrawLineAnimation(pen, pt1, pt2, color, pt1A, pt2A)
C#  
public void DrawLineAnimation( 
   Pen pen,
   PointF pt1,
   PointF pt2,
   ref ColorA color,
   ref PointA pt1A,
   ref PointA pt2A
)

Parameters

pen
Pen object that determines the color, width, and style of the line.
pt1
PointF structure that represents the first point to connect.
pt2
PointF structure that represents the second point to connect.
color
Animated Color
pt1A
Animated First Point
pt2A
Animated Second Point

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