Overview
The Step Area Chart uses vertical and horizontal lines to connect data points, forming a step-like structure with the area below shaded. This visualization is ideal for representing data that changes at discrete intervals, such as production shifts or price levels. This is achieved by setting the Type property of ChartSeries to ChartSeriesType.StepArea.
Data Labels
Enhance readability by displaying data labels at each step of the Chart. You can enable them by setting the Visible property to true in the ChartDataLabel component within the ChartMarker. Customizations such as font and borders can be done using the ChartDataLabelFont and ChartDataLabelBorder components.
Inverted Axes
The Step Area Chart supports transposition, swapping the horizontal and vertical axes for different perspectives. Transpose the Chart axes by setting the IsTransposed property to true in the SfChart component.
Negative Data
Gracefully handle and visualize negative values within the step area series. The area is filled downwards from the zero line for negative values mapped to the YName property. Significant thresholds and regions can be highlighted using the ChartStripline component within the axis, utilizing properties like Start, End, and Text.
Series Customization
Apply custom colors, opacity levels, and step positions to match your application's design guidelines. You can fine-tune the appearance using properties like Fill, Opacity, Width, and StepPosition in the ChartSeries, and customize borders using the ChartSeriesBorder component.