MatthiasMert commented on issue #19658: URL: https://github.com/apache/echarts/issues/19658#issuecomment-1968393725
Your data contains a large number of `null` values at start and end. The property [connectNulls](https://echarts.apache.org/en/option.html#series-line.connectNulls) interpolates the line if **inbetween** two datapoints there a re `null` values. In Your case there is no datapoint to connect to in the beginning. You could add an auxiliary point at the beginning to combat that. Additionally, when zooming in, all data points outside of the view are filtered out which leads to the same problem. You can add [filterMode](https://echarts.apache.org/en/option.html#dataZoom-slider.filterMode) `'none'` to not filter out data but this will slow down performance. -- 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]
