Xceed Chart for WinForms v4.4 Documentation
LowFillEffect Property
Example 


Xceed.Chart.Core.v4.4 Assembly > Xceed.Chart.Core Namespace > HighLowSeries Class : LowFillEffect Property
Gives you access to the FillEffect object applied on the low areas.
Syntax
'Declaration
 
<DescriptionAttribute("Fill Effect applied on the low areas.")>
<CategoryAttribute("Series Appearance")>
Public Property LowFillEffect As FillEffect
'Usage
 
Dim instance As HighLowSeries
Dim value As FillEffect
 
instance.LowFillEffect = value
 
value = instance.LowFillEffect
[Description("Fill Effect applied on the low areas.")]
[Category("Series Appearance")]
public FillEffect LowFillEffect {get; set;}
Remarks
Low areas are areas for which the high value is smaller than the low value. The filling is applied on the low areas if the FillMode property of the associated Appearance object is set to AppearanceLineMode.Series.
Example
The following code will display the low areas in magenta color.
highlow.Appearance.FillMode = AppearanceFillMode.Series;
highlow.LowFillEffect.Color = Color.Magenta;
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
FillEffect Class