Xceed Chart for WinForms v4.4 Documentation
HighBorder Property
Example 


Xceed.Chart.Core.v4.4 Assembly > Xceed.Chart.Core Namespace > HighLowSeries Class : HighBorder Property
Gives you access to the LineProperties object controlling the appearance of the high area borders.
Syntax
'Declaration
 
<CategoryAttribute("Series Appearance")>
<DescriptionAttribute("Line properties applied on the high areas.")>
Public Property HighBorder As LineProperties
'Usage
 
Dim instance As HighLowSeries
Dim value As LineProperties
 
instance.HighBorder = value
 
value = instance.HighBorder
[Category("Series Appearance")]
[Description("Line properties applied on the high areas.")]
public LineProperties HighBorder {get; set;}
Remarks
High areas are areas for which the high value is larger than the low value. The border is applied on the high areas if the LineMode property of the associated Appearance object is set to AppearanceLineMode.Series.
Example
The following code will display the high areas with green border color.
highlow.Appearance.LineMode = AppearanceLineMode.Series;
highlow.HighBorder.Color = Color.Green;
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

HighLowSeries Class
HighLowSeries Members
Appearance Class
LineProperties Class