Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / AreaSeries Class / AreaFillEffect Property
Example


In This Topic
    AreaFillEffect Property
    In This Topic
    Gives you access to the FillEffect object applied on the area.
    Syntax
    'Declaration
     
    <CategoryAttribute("Series Appearance")>
    <DescriptionAttribute("Appearance of the area filling.")>
    Public Property AreaFillEffect As FillEffect
    'Usage
     
    Dim instance As AreaSeries
    Dim value As FillEffect
     
    instance.AreaFillEffect = value
     
    value = instance.AreaFillEffect
    [Category("Series Appearance")]
    [Description("Appearance of the area filling.")]
    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