Xceed Chart for WinForms v4.4 Documentation
AreaBorder Property
Example 


Xceed.Chart.Core.v4.4 Assembly > Xceed.Chart.Core Namespace > AreaSeries Class : AreaBorder Property
Gives you access to the LineProperties object controlling the appearance of the area borders.
Syntax
'Declaration
 
<DescriptionAttribute("Appearance of the area borders.")>
<CategoryAttribute("Series Appearance")>
Public Property AreaBorder As LineProperties
'Usage
 
Dim instance As AreaSeries
Dim value As LineProperties
 
instance.AreaBorder = value
 
value = instance.AreaBorder
[Description("Appearance of the area borders.")]
[Category("Series Appearance")]
public LineProperties AreaBorder {get; set;}
Remarks
The LineProperties object accessible through this method specifies the border of the entire area, if the FillMode property of the associated Appearance object is set to AppearanceLineMode.Series.
Example
The following code will display an area with blue border color.
area.Appearance.LineMode = AppearanceLineMode.Series
area.AreaBorder.Color = Color.Blue
area.Appearance.LineMode = AppearanceLineMode.Series;
area.AreaBorder.Color = Color.Blue;
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

AreaSeries Class
AreaSeries Members
Appearance Class
LineProperties Class