Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / HighLowSeries Class / LowBorder Property
Example


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