Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / PointSeries Class / PointBorder Property
Example


In This Topic
    PointBorder Property
    In This Topic
    Controls the line properties applied on the point borders.
    Syntax
    'Declaration
     
    <CategoryAttribute("Series Appearance")>
    <DescriptionAttribute("Controls the line properties applied on the point borders")>
    Public Property PointBorder As LineProperties
    'Usage
     
    Dim instance As PointSeries
    Dim value As LineProperties
     
    instance.PointBorder = value
     
    value = instance.PointBorder
    [Category("Series Appearance")]
    [Description("Controls the line properties applied on the point borders")]
    public LineProperties PointBorder {get; set;}
    Remarks
    All points borders are controlled with this object if the LineMode property of the associated Appearance object is set to Series.
    Example
    The following code displays a point series with blue color borders.
    point.Appearance.LineMode = AppearanceLineMode.Series
    point.PointBorder.Color = Color.Blue
    point.Appearance.LineMode = AppearanceLineMode.Series;
    point.PointBorder.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