A newer version of this page is available.
Switch to the current version.
Shadow Class
Defines the shadow settings.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v18.2.dll
Declaration
[TypeConverter(typeof(LocalizableExpandableObjectTypeConverter))]
public sealed class Shadow :
ChartElement
<TypeConverter(GetType(LocalizableExpandableObjectTypeConverter))>
Public NotInheritable Class Shadow
Inherits ChartElement
Related API Members
The following members accept/return Shadow objects:
Show 18 links
Remarks
The Shadow class is used to contain the shadow settings. The properties exposed by this class allow you to customize the shadow color (Shadow.Color), size (Shadow.Size) and visibility (Shadow.Visible).
An object of the Shadow type can be accessed via the Shadow properties of different chart elements (for instance, the legend's Legend.Shadow property, a pane's XYDiagramPaneBase.Shadow property, a label's SeriesLabelBase.Shadow property, etc).
Examples
This example demonstrates the possibilities of customizing a chart diagram's panes' appearance at runtime.
XYDiagramPane myPane = new XYDiagramPane("The Pane's Name");
myPane.BackColor = Color.Aqua;
myPane.FillStyle.FillMode = FillMode.Empty;
myPane.BorderVisible = true;
myPane.BorderColor = Color.Blue;
myPane.Shadow.Visible = true;
myPane.Shadow.Color = Color.LightGray;
myPane.Shadow.Size = 2;
Inheritance
Object
ChartElement
Shadow
See Also
Feedback