corelibraries-devexpress-dot-xtracharts-36e174bf.md
Defines a filling style for rectangular chart elements in 2D series.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
public class RectangleFillStyle :
FillStyle2D
Public Class RectangleFillStyle
Inherits FillStyle2D
The following members return RectangleFillStyle objects:
Show 17 links
| Library | Related API Members |
|---|---|
| Cross-Platform Class Library | Annotation.FillStyle |
| Axis2D.InterlacedFillStyle | |
| AxisLabel.FillStyle | |
| BarDrawOptions.FillStyle | |
| BarSeriesView.FillStyle | |
| BoxPlotDrawOptions.FillStyle | |
| BoxPlotSeriesView.FillStyle | |
| CustomAxisLabel.FillStyle | |
| LegendBase.FillStyle | |
| SeriesLabelBase.FillStyle | |
| Strip.FillStyle | |
| TotalLabel.FillStyle | |
| XYDiagramPaneBase.FillStyle | |
| WinForms Controls | ChartControl.FillStyle |
| ASP.NET MVC Extensions | ChartControlSettings.FillStyle |
| ASP.NET Web Forms Controls | WebChartControl.FillStyle |
| .NET Reporting Tools | XRChart.FillStyle |
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).
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;
Dim myPane As 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
Object ChartElement FillStyleBase FillStyle2D RectangleFillStyle
See Also