GitHub user dosubot[bot] added a comment to the discussion: Strange behaviour of funnel chart
<!-- Greeting --> Hi @luca-vercelli! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the superset team. <!-- Answer --> You're right that this is a common use case for funnels, but Superset's funnel chart currently displays raw metric values directly from the dataset — it does **not** have a built-in cumulative/"at least" mode [[1]](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/plugins/plugin-chart-echarts/src/Funnel/transformProps.ts#L168). The percent calculation options (relative to first step, previous step, or total) only affect tooltip/label percentages, not the actual bar sizes [[2]](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx#L72-L90). **Workaround:** The user in [discussion #29116](https://github.com/apache/superset/discussions/29116) solved this by pre-aggregating the cumulative values in their SQL query (using Jinja templating to preserve dashboard filter support). Essentially, you'd write a query where each stage's value already represents "all items that reached *at least* this stage," and then point the funnel chart at that pre-computed result. So to summarize: your use case is definitely valid and common, but it requires handling the cumulative logic at the SQL/dataset level rather than in the chart itself. There's no configuration toggle for this today. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=reply-with-mention&utm_term=apache%2Fsuperset).* --- Docs are dead. Just use [Dosu](https://dosu.dev?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-tagline&utm_term=apache%2Fsuperset). [](https://app.dosu.dev/response-feedback?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-feedback&utm_term=apache%2Fsuperset&message_id=a971798f-fa2e-41ba-8fdb-871db9e8727b) [](https://github.dosu.com/apache/superset?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-ask-repo&utm_term=apache%2Fsuperset) [](https://app.dosu.dev/signup?referrer=openSource&source=github-footer&utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-share-team&utm_term=apache%2Fsuperset) GitHub link: https://github.com/apache/superset/discussions/40095#discussioncomment-16902199 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
