Xceed Chart for WinForms v4.4 Documentation
Shadow Property (Backplane)
Example 


Xceed.Chart.Standard.v4.4 Assembly > Xceed.Chart.Standard Namespace > Backplane Class : Shadow Property
Controls the backplane shadow.
Syntax
'Declaration
 
<CategoryAttribute("Appearance")>
<DescriptionAttribute("Controls the shadow of the backplane.")>
Public Property Shadow As Shadow
'Usage
 
Dim instance As Backplane
Dim value As Shadow
 
instance.Shadow = value
 
value = instance.Shadow
[Category("Appearance")]
[Description("Controls the shadow of the backplane.")]
public Shadow Shadow {get; set;}
Example
The following code enables the shadow of the first legend.
Dim legend As Legend = CType((ChartControl.Legends(0)), Legend)
legend.Backplane.Shadow.Visible = True
Legend legend = (Legend)(ChartControl.Legends[0]);
legend.Backplane.Shadow.Visible = true;
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

Backplane Class
Backplane Members