dosubot[bot] commented on issue #33907: URL: https://github.com/apache/superset/issues/33907#issuecomment-3004587721
<!-- Answer --> This is a confirmed bug: when the axis column in an Echarts chart has a label (verbose name) defined at the dataset level, Drill to Detail (D2D) by axis value does not filter correctly and shows all values. The root cause is that the D2D filter construction uses the axis label (verbose name) instead of the true column name, but the backend expects the real column name for filtering. As a result, the filter is ignored and all rows are shown. There is currently no mapping from label back to column name in the Echarts plugin's D2D logic, which is why this happens. The generic D2D modal expects filters to reference the true column name, so this is specific to how the Echarts plugin constructs the filter payloads. No existing tickets, docs, or PRs address this specific issue yet. For more technical details, see the relevant code in the EchartsTimeseries plugin and DrillDetailPane component ([source](https://github.com/apache/superset/blob/e0e3f9494972e90b3eec7a23d75747e0e63c07c9/supers et-frontend/plugins/plugin-chart-echarts/src/Timeseries/EchartsTimeseries.tsx), [source](https://github.com/apache/superset/blob/e0e3f9494972e90b3eec7a23d75747e0e63c07c9/superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx)). <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/d5dcc01c-5a30-4f2c-8c09-6cbc5f77e990?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/d5dcc01c-5a30-4f2c-8c09-6cbc5f77e990?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/d5dcc01c-5a30-4f2c-8c09-6cbc5f77e990?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/d5dcc01c-5a30-4f2c-8c09-6cbc5f77e990?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/d5dcc01c-5a30-4f2c-8c09-6cbc5f77e990?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/d5dcc01c-5a30-4f2c-8c09-6cbc5f77e990?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/d5dcc01c-5a30-4f2c-8c09-6cbc5f77e990?feedback_type=other)</sup> [](https://go.dosu.dev/discord-bot) [! [Share on X](https://img.shields.io/badge/X-share-black)](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/issues/33907) -- 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]
