ragava28 commented 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.  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]
