Xceed Chart for WinForms v4.4 Documentation
PieFillEffect Property
Example 


Xceed.Chart.Core.v4.4 Assembly > Xceed.Chart.Core Namespace > PieSeries Class : PieFillEffect Property
Controls the fill effect applied on the pies.
Syntax
'Declaration
 
<CategoryAttribute("Series Appearance")>

<DescriptionAttribute("Controls the fill effect applied on the pies.")>

Public Property PieFillEffect As FillEffect
'Usage
 
Dim instance As PieSeries

Dim value As FillEffect

 

instance.PieFillEffect = value

 

value = instance.PieFillEffect
[Category("Series Appearance")]

[Description("Controls the fill effect applied on the pies.")]

public FillEffect PieFillEffect {get; set;}
Remarks
All pies are filled with this fill effect if the FillMode property of the associated Appearance object is set to Series.
Example
The following code displays a pie series in blue color.
pie.Appearance.FillMode = AppearanceFillMode.Series

pie.PieFillEffect.SetSolidColor(Color.Blue)
pie.Appearance.FillMode = AppearanceFillMode.Series;

pie.PieFillEffect.SetSolidColor(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

Reference

PieSeries Class
PieSeries Members