Xceed Chart for WinForms v4.4 Documentation
FillEffect Property (Backplane)
Example 


Xceed.Chart.Standard.v4.4 Assembly > Xceed.Chart.Standard Namespace > Backplane Class : FillEffect Property
The fill effect applied on the backplane.
Syntax
'Declaration
 
<DescriptionAttribute("The fill effect applied on the backplane.")>
<CategoryAttribute("Appearance")>
Public Property FillEffect As FillEffect
'Usage
 
Dim instance As Backplane
Dim value As FillEffect
 
instance.FillEffect = value
 
value = instance.FillEffect
[Description("The fill effect applied on the backplane.")]
[Category("Appearance")]
public FillEffect FillEffect {get; set;}
Remarks
Gives you access to the FillEffect object controlling the fill effect applied on the backplane.
Example
The following code applies a gradient on the backplane:
Dim backplane As Backplane =  someTextProps.Backplane 
backplane.FillEffect.SetPredefinedAdvancedGradient(AdvancedGradientScheme.Ocean2, 11)
Backplane backplane = someTextProps.Backplane;
backplane.FillEffect.SetPredefinedAdvancedGradient(AdvancedGradientScheme.Ocean2, 11);
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

Backplane Class
Backplane Members