louis-neal commented on issue #10656: The min and max values of the "TicksCoords" on the axis are not rendered URL: https://github.com/apache/incubator-echarts/issues/10656#issuecomment-502572336 > @louis-neal Thanks Louis. > Can you provide a test example for this? example: ```javascript let a = 856.8, b = 856.8000000000001 a < b //true (Causes ticksCoords.shift(), so the rightmost axisTick is not rendered.) b - a > 1e-12 //false (What we want.) b - a > 0.000000000001 //false b - a > 0.0000000000001 //true ```
---------------------------------------------------------------- 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] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
