chart with second axis C sharp

first i use syncfusion version 19.x.x then i updated to 20.4.52 then my y2Axis moved to the left side 

I just wanna know how can i move y2Axis back to the right side.

Thanks


3 Replies

CA Chanathip Amoncheewasilapakul October 29, 2024 08:51 AM UTC

20.4.52

Image_5441_1730191844812



CA Chanathip Amoncheewasilapakul October 29, 2024 08:53 AM UTC

19.2.0.59
Image_3738_1730191925095



NP Nishanthi Panner Selvam Syncfusion Team October 30, 2024 10:20 AM UTC

Hi Chanathip,


Greetings from Syncfusion.


We suggest you to set opposedPosition as true in axis to meet your requirement.


We have also attached code-snippet and screenshot for your reference.


Code-snippet:


<ejs-chart id="container">

    <e-chart-axes>

        <e-chart-axis opposedPosition="true" rowIndex="0" name="yAxis" >

            <e-linestyle width="0"></e-linestyle>

            <e-majorgridlines width="0"></e-majorgridlines>

        </e-chart-axis>

    </e-chart-axes>

    <e-series-collection>

        <e-series dataSource="ViewBag.dataSource" xName="x" yName="y1" yAxisName="yAxis" type="@Syncfusion.EJ2.Charts.ChartSeriesType.Line"></e-series>

    </e-series-collection>

</ejs-chart>


Screenshot:



Documentation: https://ej2.syncfusion.com/aspnetcore/documentation/chart/axis-customization#opposed-position

Kindly revert us if you have any concerns.


Regards,

Nishanthi


Loader.
Up arrow icon