Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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

C#
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