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];
   
   Then set the filterMode option of dataZoom component to 'weakFilter'


----------------------------------------------------------------
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:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org

Reply via email to