Atokulus opened a new issue, #20949: URL: https://github.com/apache/echarts/issues/20949
### Version 5.6.0 ### Link to Minimal Reproduction https://codesandbox.io/p/sandbox/basic-line-chart-srp85k ### Steps to Reproduce We have a simple chart with two line serieses. Both X and Y axis use `"value"` as their `type` (it can also be shown that type `"date"` for Y axis would result in same issue). * Series 1 uses 'smallX' and 'smallY' as its dataset source, where the small dataset consists of only 3 points. * Series 2 uses 'largeX' and 'largeY' as its dataset source, where the large dataset consists of 13 points. Depending on the ordering of the dataset entries (i.e. whether `smallX` and `smallY` are declared before `largeX` and `largeY` (or not), the second series renders only its first 3 points from the large dataset, rather than 13 points. To hotfix around this problem, the largest dataset has to be defined first. This issue should be addressed by rendering all datapoints independent of the dataset declaration order. ### Current Behavior Second line series does not render all datapoints depending on declaration order and length of first dataset. This issue also occurs for charts with more than two line serieses. ### Expected Behavior All line series should render their full dataset independent of dataset declaration order and length. ### Environment ```markdown - OS: All - Browser: All - Framework: All ``` ### Any additional comments? Thanks for providing and contributing to this great library 😄 Best regards Markus -- 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]
