Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change. .

NumericAxisY.Strips Property

Provides access to the collection of axis strips. This is a bindable property.

Namespace: DevExpress.Maui.Charts

Assembly: DevExpress.Maui.Charts.dll

NuGet Package: DevExpress.Maui.Charts

Declaration

public NumericStripCollection Strips { get; }

Property Value

Type Description
NumericStripCollection

A NumericStripCollection object that stores axis strips.

Remarks

A strip is a highlighted area limited by two fixed values (minimal and maximal limits) of the corresponding axis. You can use strips to visually represent a range of values behind series and trace whether the series points’ values fall in or out of that range.

Strips belong to an axis object. You can add an unlimited number of strips to an axis. To add a strip to a y-axis, add a NumericStrip object with the specified MinLimit and MaxLimit values to the NumericAxisY.Strips collection.

See Also