RectangleFillStyle Class
In This Article
Defines a filling style for rectangular chart elements in 2D series.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.2.dll
NuGet Package: DevExpress.Charts
#Declaration
public class RectangleFillStyle :
FillStyle2D
#Related API Members
The following members return RectangleFillStyle objects:
Show 17 links
Library | Related API Members |
---|---|
Cross-Platform Class Library | Annotation. |
Axis2D. |
|
Axis |
|
Bar |
|
Bar |
|
Box |
|
Box |
|
Custom |
|
Legend |
|
Series |
|
Strip. |
|
Total |
|
XYDiagram |
|
Win |
Chart |
ASP. |
Chart |
ASP. |
Web |
.NET Reporting Tools | XRChart. |
#Remarks
The RectangleFillStyle class defines the filling style settings of different rectangular chart elements (such as a bar series view, chart diagram, legend, strip, etc).
An object of the RectangleFillStyle type can be accessed via the FillStyle property of the corresponding chart element (e.g. BarSeriesView.FillStyle, ChartControl.FillStyle).
#Example
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
FillStyleBase
FillStyle2D
RectangleFillStyle
See Also