Articles in this section
Category / Section

How to change of the position of the axis in React Chart?

3 mins read

This article explains how to change the position of the axis in the React Chart.

Customize the position of the axis

You can customize the chart axis position to the opposite side of the default by setting the opposedPosition property to true.

In the following code example, the primary x axis and primary y axis are in opposed positions.

Index.js

import { createRoot } from 'react-dom/client';
import * as React from 'react';
import { ChartComponent, SeriesCollectionDirective, SeriesDirective, Inject, ColumnSeries, Category
    } from '@syncfusion/ej2-react-charts';

const Column = () => {
return (
    <chartcomponent id="charts" primaryxaxis="{{" valuetype:="" 'category',="" interval:="" 1,="" majorgridlines:="" {="" width:="" 2="" },="" linestyle:="" majorticklines:="" opposedposition:="" true="" }}="" primaryyaxis="{{" minimum:="" 0,="" maximum:="" 65,="" 5,="">
      <inject services="{[ColumnSeries," category]}="">
      <seriescollectiondirective>
        <seriesdirective datasource="{data}" xname="x" yname="y" type="Column" fill="#febe17">
      </seriesdirective></seriescollectiondirective>
    </inject></chartcomponent>
   );
};
export default Column;

const root = createRoot(document.getElementById('sample'));
root.render(<column>);

The following screenshot illustrate the output of the above code snippet.

Screenshot:

React chart axis in opposed position

View Sample in Stackblitz

Conclusion

I hope you enjoyed learning about how to change of the position of the axis in React Chart.

You can refer to our React Chart feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our React Chart example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, support portal, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied