worldforce1 edited a comment on issue #13316:
URL: 
https://github.com/apache/incubator-echarts/issues/13316#issuecomment-730147111


   I found a solution around this bug.
   Just modify the source code of echart.js in function AxisProxy -> 
filterData, from:
   
   var thisLeftOut = value < valueWindow[0]
   var thisRightOut = value > valueWindow[1]
   
   to
   
   var thisLeftOut = value < valueWindow[0] &&  seriesData.get(dataDims[i], 
dataIndex+1) < valueWindow[0];
   var thisRightOut = value > valueWindow[1] && seriesData.get(dataDims[i], 
dataIndex-1) > valueWindow[1];
   
   


----------------------------------------------------------------
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.

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