React Chart - Multi-Axis Chart

A multi-axis chart adds extra meanings to visualized data in comparison to a single-axis chart. For example, in a single-axis chart, you have to choose which values to indicate - absolute or percentage. With a multi-axis chart, you are free to indicate both absolute and percentage values on two separate axis.

DevExtreme HTML5 JavaScript Charts MultipleValueAxes

To configure a multi-axis chart, follow the steps below.

  1. Create and name the value axes
    Declare several objects in the valueAxis array. Each object configures a single value axis. Then, give each value axis a unique name.

    App.js
    • import React from 'react';
    • import Chart, {
    • ValueAxis
    • // ...
    • } from 'devextreme-react/chart';
    •  
    • class App extends React.Component {
    • render() {
    • return (
    • <Chart ... >
    • <ValueAxis name="absoluteAxis"/>
    • <ValueAxis name="percentageAxis"/>
    • {/* ... */}
    • </Chart>
    • );
    • }
    • }
    •  
    • export default App;
  2. Bind series to value axes
    Bind each series to a value axis using the axis property. If the axis property is missing from the series configuration, such a series will be bound to the axis declared first in the valueAxis array.

    App.js
    • import React from 'react';
    • import Chart, {
    • Series
    • // ...
    • } from 'devextreme-react/chart';
    •  
    • class App extends React.Component {
    • render() {
    • return (
    • <Chart ... >
    • <Series axis="percentageAxis"/>
    • <Series axis="percentageAxis"/>
    • <Series>
    • {/* This series will be automatically bound to the 'absoluteAxis' */}
    • </Series>
    • {/* ... */}
    • </Chart>
    • );
    • }
    • }
    •  
    • export default App;

All value axes in the Chart are synchronized by default, but you can explicitly specify the value at which one axis should be synchronized with others. For this purpose, set the synchronizedValue property. In addition, you can add more space between two side-by-side axes using the multipleAxesSpacing property.

App.js
  • import React from 'react';
  • import Chart, {
  • ValueAxis
  • } from 'devextreme-react/chart';
  •  
  • class App extends React.Component {
  • render() {
  • return (
  • <Chart ... >
  • <ValueAxis
  • name="absoluteAxis"
  • synchronizedValue={0}
  • />
  • <ValueAxis
  • name="percentageAxis"
  • synchronizedValue={0}
  • multipleAxesSpacing={10}
  • />
  • </Chart>
  • );
  • }
  • }
  •  
  • export default App;

View Demo

See Also