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


In This Topic
    HighFillEffect Property
    In This Topic
    Gives you access to the FillEffect object applied on the high areas.
    Syntax
    'Declaration
     
    <CategoryAttribute("Series Appearance")>
    <DescriptionAttribute("Fill Effect applied on the high areas.")>
    Public Property HighFillEffect As FillEffect
    'Usage
     
    Dim instance As HighLowSeries
    Dim value As FillEffect
     
    instance.HighFillEffect = value
     
    value = instance.HighFillEffect
    [Category("Series Appearance")]
    [Description("Fill Effect applied on the high areas.")]
    public FillEffect HighFillEffect {get; set;}
    Remarks
    High areas are areas for which the high value is larger than the low value. The filling is applied on the high areas if the FillMode property of the associated Appearance object is set to AppearanceLineMode.Series.
    Example
    The following code will display the high areas in blue color.
    highlow.Appearance.FillMode = AppearanceFillMode.Series;
    highlow.HighFillEffect.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