Xceed Chart for WinForms v4.4 Documentation
LowBorder Property
Example 


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