wpf-devexpress-dot-xpf-dot-charts-dot-axis2d-cca025f8.md
Provides access to the collection of axis strips. This is a dependency property.
Namespace : DevExpress.Xpf.Charts
Assembly : DevExpress.Xpf.Charts.v25.2.dll
NuGet Package : DevExpress.Wpf.Charts
public StripCollection Strips { get; }
Public ReadOnly Property Strips As StripCollection
| Type | Description |
|---|---|
| StripCollection |
A StripCollection object which represents the collection of axis strips.
|
The Strips property provides access to an axis‘ collection of strips, each represented by a Strip object.
For more information, refer to Strips.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Strips property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
wpf-charts-custom-draw-chart-series-points/CS/CustomDrawChart/MainWindow.xaml#L21
<dxc:AxisY2D GridSpacing="1">
<dxc:AxisY2D.Strips>
<dxc:Strip AxisLabelText="High" MinLimit="2" MaxLimit="3"
See Also