ragava28 edited a comment on issue #15960:
URL: https://github.com/apache/echarts/issues/15960#issuecomment-954761169


   @Ovilia ,
   
   We are trying to to build some thing like below where x & y axis are 
continues numbers. 
   
![image](https://user-images.githubusercontent.com/14935973/139439256-c3f1411e-4e9d-4818-997d-c072765acbb5.png)
   
   Our data in x & y axis is not discreate (like category) .
   
   So for that we tried below configuration . 
   
   ==========================
   
   > 
   > option = {
   >   title: {
   >     text: 'Depth Vs Level Of Concern'
   >   },
   >   tooltip: {
   >     trigger: 'axis',
   >     axisPointer: {
   >       type: 'shadow'
   >     }
   >   },
   >   xAxis: {
   >     type: 'value',
   >     name : 'Level of concern'
   >   },
   >   yAxis: {
   >     type: 'value',
   >     name : 'Depth'
   >   },
   >   series: [
   >     {
   >       type: 'bar',
   >       data: [[40,100], [50,200], [60,500],  [60,800]] // [xAxis, yAxis]
   >     }
   >   ]
   > };
   
   ==========================
   
   this is drawing bars on xAxis always , how do we change orientation of the 
these bars so that they are horizontally aligned on Yaxis with out using 
Category axis .
    
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to