Xceed Chart for WinForms v4.4 Documentation
AreaFillEffect Property
Example 


Xceed.Chart.Core.v4.4 Assembly > Xceed.Chart.Core Namespace > AreaSeries Class : AreaFillEffect Property
Gives you access to the FillEffect object applied on the area.
Syntax
'Declaration
 
<DescriptionAttribute("Appearance of the area filling.")>

<CategoryAttribute("Series Appearance")>

Public Property AreaFillEffect As FillEffect
'Usage
 
Dim instance As AreaSeries

Dim value As FillEffect

 

instance.AreaFillEffect = value

 

value = instance.AreaFillEffect
[Description("Appearance of the area filling.")]

[Category("Series Appearance")]

public FillEffect AreaFillEffect {get; set;}
Remarks
The FillEffect object accessible through this method specifies the filling of the entire area, if the FillMode property of the associated Appearance object is set to AppearanceFillMode.Series.
Example
The following code will display an area in green color.
area.Appearance.FillMode = AppearanceFillMode.Series

area.AreaFillEffect.SetSolidColor(Color.Green)
area.Appearance.FillMode = AppearanceFillMode.Series;

area.AreaFillEffect.SetSolidColor(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

AreaSeries Class
AreaSeries Members
Appearance Class
FillEffect Class