e-Axis opposedPosition not working

Hi,

The code where opposedPosition = 'false' seems not to have any effect.  Could this possibility to be a bug?

 <e-axes>
            <e-axis rowIndex=1 name='yAxis1' opposedPosition='true' >
            </e-axis>
            <e-axis rowIndex=2 name='yAxis2' opposedPosition='false' >
            </e-axis>
  </e-axes>

1 Reply

DD Dharanidharan Dharmasivam Syncfusion Team December 7, 2017 09:49 AM UTC

Hi Albert, 

Thanks for using our products. 

We have analyzed your query with the provided code snippet. Before providing solution to your scenario, we would like to let you know that, if you specifying Boolean properties, then you need to specify those properties in set bracket (for example in you case [opposedPosition]). To over the reported scenario, kindly specify the opposed position property as like in the below code snippet, so that chart will render properly. 

Angular: 

<ej-chart> 
   <e-axes> 
      <e-axis rowIndex=1 name='yAxis' [opposedPosition]='true'> 
      </e-axis> 
      <e-axis rowIndex=2 name='yAxis2' [opposedPosition]='false'> 
    </e-axis> 
</ej-chart> 


Screenshot: 
 

Sample for reference can be find from below link. 

kindly revert us, if you have any concerns. 

Thanks, 
Dharani. 


Loader.
Up arrow icon