See Also

Chart Class  | Chart Members

Language

Visual Basic

C#

Show All

See Also Languages dotnetCHARTING Send comments on this topic.

SmartLabelLine Property

See Chart.DefaultSeries.DefaultElement.SmartLabel.Line.

[Visual Basic]
Public Property SmartLabelLine As Line
[C#]
public Line SmartLabelLine {get; set;}

Example

[C#] 

//Import Drawing2D namespace: <%@ Import Namespace="System.Drawing.Drawing2D" %> 
Line LineObj = new Line(Color.Red); 
LineObj.DashStyle = DashStyle.DashDot; 
LineObj.EndCap = LineCap.ArrowAnchor; 
Chart.SmartLabelLine = LineObj;

[Visual Basic] 

'Import Drawing2D namespace: <%@ Import Namespace="System.Drawing.Drawing2D" %>
Dim LineObj As Line = new Line(Color.Red)
LineObj.DashStyle = DashStyle.DashDot
LineObj.EndCap = LineCap.ArrowAnchor
Chart.SmartLabelLine = LineObj

See Also

Chart Class  | Chart Members

 

 


2002 - 2005 Webavail Productions Inc. & Corporate Web Solutions Ltd.. All Rights Reserved.