maui-devexpress-dot-maui-dot-charts-4808d16b.md
The highlighted area limited by two fixed values (minimal and maximal limits) of an axis, and is perpendicular to the axis.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public class NumericStrip :
StripBase
Strips represent a range of values visually, behind series. They allow users to trace whether the series point values fall in or out of the range:
Strips belong to an axis object. You can add an unlimited number of strips to an axis. A numeric axis (NumericAxisX or NumericAxisY) holds its strips in the DateTimeStripCollection collection which the NumericAxisY.Strips or NumericAxisX.Strips property returns.
The following NumericStrip properties allow you to configure a strip:
|
Property
|
Description
| | --- | --- | |
|
Gets or sets the minimum limiting value of the strip along an axis. This is a bindable property.
| |
|
Gets or sets whether the strip is limited by its MinLimit value. This is a bindable property.
| |
|
Gets or sets the maximum limiting value of the strip along an axis. This is a bindable property.
| |
|
Gets or sets whether the strip is limited by its MaxLimit value. This is a bindable property.
| |
|
Gets or sets the axis label the strip displays on the axis to which the strip belongs. This is a bindable property.
| |
|
Gets or sets whether the chart legend displays a legend item for the strip. This is a bindable property.
| |
|
Gets or sets a text the strip provides to the chart legend. This is a bindable property.
| |
|
Gets or sets appearance settings of the strip. This is a bindable property.
|
System.Object BindableObject Element ChartElementBase ChartElement StyledElement StripBase NumericStrip
YieldIfNotNull<NumericStrip>()
See Also