Skip to main content
A newer version of this page is available. .

RectangleFillStyle Class

Defines a filling style for rectangular chart elements in 2D series.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v19.2.dll

Declaration

public class RectangleFillStyle :
    FillStyle2D

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

See Also