| 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;} | |
The following example sets a solid shadow for the series.
| Visual Basic | Copy Code |
|---|---|
series.Shadow.Type = ShadowType.Solid | |
| C# | Copy Code |
|---|---|
series.Shadow.Type = ShadowType.Solid; | |
Target Platforms: Windows 2000, Windows XP SP3 Family, Windows Server 2003-2008 Family, Windows Vista, Windows 7
Copy Code