Shadow Property
See Also 
Xceed.Chart.Core Assembly > Xceed.Chart.Core Namespace > SeriesBase Class : Shadow Property


Gives access to the Shadow object controlling the shadow of the series. Shadows are visible when the scene is rendered with GDI+.

Syntax

Visual Basic (Declaration) 
<DescriptionAttribute("Controls the shadow of the series.")>
<CategoryAttribute("Series Appearance")>
Public Property Shadow As Shadow
Visual Basic (Usage)Copy Code
Dim instance As SeriesBase
Dim value As Shadow
 
instance.Shadow = value
 
value = instance.Shadow
C# 
[DescriptionAttribute("Controls the shadow of the series.")]
[CategoryAttribute("Series Appearance")]
public Shadow Shadow {get; set;}

Example

The following example sets a solid shadow for the series.
Visual BasicCopy Code
series.Shadow.Type = ShadowType.Solid
C#Copy Code
series.Shadow.Type = ShadowType.Solid;

Requirements

Target Platforms: Windows 2000, Windows XP SP3 Family, Windows Server 2003-2008 Family, Windows Vista, Windows 7

See Also