Overview
The React Range Step Area Chart is used to display continuous data points as a set of steps that vary between high and low values over intervals of time and across different categories.
Marker
Mark data points with built-in shapes: circles, rectangles, ellipses, vertical lines, horizontal lines, diamonds, triangles, pentagons, crosses, and pluses. In addition to these shapes, use images to make the points more attractive.
Data label
Data labels display information about data points. Add a template to display data labels with HTML elements such as images, DIV, and spans for more informative data labels. You can rotate a data label by a given angle.
Empty/null data point
Handle missing data elegantly with empty points support.
Vertical chart
The React Range Step Area Chart can be transposed vertically to view the data from a different perspective.
Customization
Customize the color and border of the React Range Step Area Chart using built-in APIs.
Zoom and pan
Enable zooming and panning support when dealing with large amounts of data to visualize a data point in any region.
React Range Step Area Chart Code Example
Easily get started with React Range Step Area using a few simple lines of TSX code, as demonstrated below. Also explore our React Range Step Area Chart Example that shows you how to render and configure the range step area chart component.
import {AxisModel,ChartComponent, DateTime, Inject, RangeStepAreaSeries, SeriesCollectionDirective, SeriesDirective} from'@syncfusion/ej2-react-charts';
import * as React from 'react';
let data = [
{ x: 'Sun', y: 15, high: 20, low: 7 },
{ x: 'Mon', y: 22, high: 22, low: 9 },
{ x: 'Tue', y: 32, high: 22, low: 9 },
{ x: 'Wed', y: 31, high: 22, low: 9 },
{ x: 'Thu', y: 29, high: 22, low: 9 },
{ x: 'Fri', y: 24, high: 22, low: 9 },
{ x: 'Sat', y: 18, high: 22, low: 9 },
];
class App extends React.Component<{}, {}> {
public primaryXAxis: AxisModel = { valueType: 'DateTime'};
public render() {
return <ChartComponent id='charts' primaryXAxis={this.primaryXAxis}>
<Inject services={[DateTime,RangeStepAreaSeries]} />
<SeriesCollectionDirective>
<SeriesDirective dataSource={data} xName='x' high='high' low='low' type='RangeStepArea'/>
</SeriesCollectionDirective>
</ChartComponent>
}
};
ReactDOM.render(
<App />,
document.getElementById('charts') as HTMLElement
);<!DOCTYPE html>
<html>
<body>
<div id="charts"></div>
</body>
</html>Learning Resources

Range Step Area Chart User Guide
Learn the available options to customize React Range Step Area Chart.
Discover Syncfusion’s Complete React Component Ecosystem
Explore over 145+ React UI components featuring established, production-ready controls and the latest pure React components built natively for modern web app development.
-
React Components
-
Pure React Components
-
SMART COMPONENTSGRIDSDATA VISUALIZATIONDROPDOWNSFILE VIEWERS & EDITORSBUTTONSINTERACTIVE CHATINPUTSNAVIGATIONFORMSNOTIFICATIONS
-
GRIDSDATA VISUALIZATIONNAVIGATIONINPUTS
