nikeshparajuli commented on issue #18398: URL: https://github.com/apache/echarts/issues/18398#issuecomment-1887474805
@DanielZellner I couldn't get around this issue with the xAxis type being set to ```category``` (which is what I had initially). So I changed the xAxis to be of type ```value``` and I don't have these issues anymore. The data structure we provide to the series ```data``` will now be a 2D array (number[][]) instead of just a single dimensional array (number[]). I've only gone as far as ~10k data points and it seems to be ok handling that. No annoying stale renders. -- 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]
