korbit-ai[bot] commented on code in PR #34421:
URL: https://github.com/apache/superset/pull/34421#discussion_r2244888133
##########
superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/transformProps.ts:
##########
@@ -724,10 +727,12 @@ export default function transformProps(
dataZoom: zoomable
? [
{
+ id: 'dataZoomX',
type: 'slider',
- start: TIMESERIES_CONSTANTS.dataZoomStart,
- end: TIMESERIES_CONSTANTS.dataZoomEnd,
+ start: zoomableStart,
+ end: zoomableEnd,
bottom: TIMESERIES_CONSTANTS.zoomBottom,
+ filterMode: zoomableClipYAxis ? 'empty' : 'filter',
Review Comment:
### Data Loss Risk with Empty FilterMode <sub></sub>
<details>
<summary>Tell me more</summary>
###### What is the issue?
The 'empty' filterMode may hide valid data points when zooming if they have
null or missing values for any series
###### Why this matters
When using 'empty' mode, ECharts will filter out data points where any
series has missing values, potentially hiding important data that users expect
to see during zoom operations
###### Suggested change ∙ *Feature Preview*
Consider using 'weakFilter' mode instead of 'empty' to preserve partial data
points:
```typescript
filterMode: zoomableClipYAxis ? 'weakFilter' : 'filter'
```
###### Provide feedback to improve future suggestions
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/215ccd6d-e89b-4fbd-9564-67a1639e8bb4/upvote)
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/215ccd6d-e89b-4fbd-9564-67a1639e8bb4?what_not_true=true)
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/215ccd6d-e89b-4fbd-9564-67a1639e8bb4?what_out_of_scope=true)
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/215ccd6d-e89b-4fbd-9564-67a1639e8bb4?what_not_in_standard=true)
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/215ccd6d-e89b-4fbd-9564-67a1639e8bb4)
</details>
<sub>
💬 Looking for more details? Reply to this comment to chat with Korbit.
</sub>
<!--- korbi internal id:05830b75-0e31-4d99-b86d-86bf7328e0ca -->
[](05830b75-0e31-4d99-b86d-86bf7328e0ca)
--
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]