dosubot[bot] commented on issue #31202: URL: https://github.com/apache/superset/issues/31202#issuecomment-2509586674
<!-- Greeting --> Hey @kenho811! I'm here to help you with any bugs, questions, or contributions you have in mind. Let's work together to resolve the issue you're facing. <!-- Answer --> I found a similar unsolved discussion that might be relevant to your issue: [Can I connect the dots on my line chart without imputing data?](https://github.com/apache/superset/discussions/23038), which was last updated on February 8, 2023 <sup>[[1]](https://github.com/apache/superset/discussions/23038)</sup>. Regarding your issue with line charts not working when two series have different time points, Superset handles datasets with non-uniform time intervals by using a resampling method. If you specify a `resample_rule` and `resample_method` in the form data, the data can be adjusted to a uniform time interval. This might help in plotting your data correctly <sup>[[2]](https://github.com/apache/superset/blob/master/superset/viz.py)</sup>. Additionally, Superset provides a `connectNulls` option in the `transformSeries` function, which can connect data points by ignoring null values, ensuring a continuous line in the chart. This might be useful if you want to connect the series despite the different time points <sup>[[3]](https://github.com/apache/superset/blob/master/superset-frontend/plugins/plugin-chart-echarts/test/utils/series.test.ts)</sup>. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- 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]
