LineStepSeries2D.InvertedStep Property
Gets or sets a value that specifies the manner in which step lines connect data point markers.
Namespace: DevExpress.Xpf.Charts
Assembly: DevExpress.Xpf.Charts.v25.2.dll
NuGet Package: DevExpress.Wpf.Charts
Declaration
Property Value
| Type | Description |
|---|---|
| Boolean |
|
Remarks
Use the InvertedStep property to specify the manner in which data point markers are connected using step lines. Step lines can be displayed between data point markers using either standard steps (the InvertedStep property is set to false) or inverted steps (the InvertedStep property is set to true).
The following images shows the InvertedStep property in action:
InvertedStep = “False” (default)

InvertedStep = “True”

Example
<dxc:XYDiagram2D>
<dxc:LineStepSeries2D DisplayName="Temperature"
DataSource="{Binding Data}"
ArgumentDataMember="TimeStamp"
ValueDataMember="Temperature"
InvertedStep="True">
</dxc:LineStepSeries2D>
</dxc:XYDiagram2D>