Xceed Chart for WinForms v4.4 Documentation
PointBorder Property
Example 


Xceed.Chart.Core.v4.4 Assembly > Xceed.Chart.Core Namespace > PointSeries Class : PointBorder Property
Controls the line properties applied on the point borders.
Syntax
'Declaration
 
<DescriptionAttribute("Controls the line properties applied on the point borders")>
<CategoryAttribute("Series Appearance")>
Public Property PointBorder As LineProperties
'Usage
 
Dim instance As PointSeries
Dim value As LineProperties
 
instance.PointBorder = value
 
value = instance.PointBorder
[Description("Controls the line properties applied on the point borders")]
[Category("Series Appearance")]
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

Reference

PointSeries Class
PointSeries Members