Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / SeriesBase Class / Shadow Property
Example


In This Topic
    Shadow Property (SeriesBase)
    In This Topic
    Gives access to the Shadow object controlling the shadow of the series. Shadows are visible when the scene is rendered with GDI+.
    Syntax
    'Declaration
     
    <CategoryAttribute("Series Appearance")>
    <DescriptionAttribute("Controls the shadow of the series.")>
    Public Property Shadow As Shadow
    'Usage
     
    Dim instance As SeriesBase
    Dim value As Shadow
     
    instance.Shadow = value
     
    value = instance.Shadow
    [Category("Series Appearance")]
    [Description("Controls the shadow of the series.")]
    public Shadow Shadow {get; set;}
    Example
    The following example sets a solid shadow for the series.
    series.Shadow.Type = ShadowType.Solid
    series.Shadow.Type = ShadowType.Solid;
    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