We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback


Overview

The React range area chart is used to show variation in data values for a given time. It is like the area series, except that the area between the high and low ranges is filled.


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 area chart can be transposed vertically to view the data from a different perspective.


Customization

Customize the color and border of the range area chart using built-in APIs.


Zoom and pan

Enable zooming and panning when dealing with large amounts of data to focus on particular ranges.


React Range Area Chart Code Example

Easily get started with React Range Area using a few simple lines of JS code, as demonstrated below. Also explore our React Range Area Chart Example that shows you how to render and configure the range area chart component.

import {AxisModel,ChartComponent, DateTime, Inject, RangeAreaSeries, SeriesCollectionDirective, SeriesDirective} from'@syncfusion/ej2-react-charts';
import * as React from 'react';
let series1: object[] = [];
let value: number = 35;
let point1: object;

for (let i: number = 1; i < 360; i++) {
    if (Math.random() > .5) {
        value += Math.random();
    } else {
        value -= Math.random();
    }
    point1 = {
        high: value, low: value - 10,x: new Date(2015, 0, i),
    };
    series1.push(point1);
}
class App extends React.Component<{}, {}> {
  public primaryXAxis: AxisModel = { valueType: 'DateTime'};
  public render() {
    return <ChartComponent id='charts' primaryXAxis={this.primaryXAxis}>
      <Inject services={[DateTime,RangeAreaSeries]} />
      <SeriesCollectionDirective>
      <SeriesDirective dataSource={series1} xName='x' high='high' low='low' type='RangeArea'/>
      </SeriesCollectionDirective>
    </ChartComponent>
  }
};
ReactDOM.render(
  <App />,
  document.getElementById('charts') as HTMLElement
);
<!DOCTYPE html>
<html>

<body> 
     <div id="charts"></div>
</body>

</html>

Learning Resources

UG

Range Area Chart User Guide

Learn the available options to customize React range area chart.

API

Range Area Chart API Reference

Explore the React range area chart APIs.


85+ REACT UI COMPONENTS

Scroll up icon

Warning Icon You are using an outdated version of Internet Explorer that may not display all features of this and other websites. Upgrade to Internet Explorer 8 or newer for a better experience.Close Icon

Live Chat Icon For mobile
Live Chat Icon