Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / AreaSeries Class / AreaBorder Property
Example


In This Topic
    AreaBorder Property
    In This Topic
    Gives you access to the LineProperties object controlling the appearance of the area borders.
    Syntax
    'Declaration
     
    <CategoryAttribute("Series Appearance")>
    <DescriptionAttribute("Appearance of the area borders.")>
    Public Property AreaBorder As LineProperties
    'Usage
     
    Dim instance As AreaSeries
    Dim value As LineProperties
     
    instance.AreaBorder = value
     
    value = instance.AreaBorder
    [Category("Series Appearance")]
    [Description("Appearance of the area borders.")]
    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