GitHub user TongyiDai added a comment to the discussion: How can I create independent filter controls for each chart in Superset 6.1.0?
Superset 6.1 does not have a built-in “filter panel inside each chart tile” mode. Native filters are dashboard components: you can scope each filter to only one chart (or a selected group of charts), but the controls are still rendered by the dashboard Filter Bar. The lowest-maintenance native setup is therefore: 1. Create the Chart 1 filters and set their scope to Chart 1 only. 2. Create a separate set for Chart 2 and scope those to Chart 2 only. 3. Give the filters chart-specific names and use horizontal Filter Bar orientation or dashboard tabs/layout to make the association clearer. The query isolation is supported; the requested placement is not. A visualization plugin is not a drop-in replacement for native filters. It can render controls, but to participate in dashboard cross-filter state it must publish/consume data masks and you would own that frontend behavior across Superset upgrades. A simpler custom chart can also put local controls inside its own plugin and include their values in that chart's query, but those are chart-local controls, not native dashboard filters. If “controls visually inside each tile” is a hard requirement, the realistic options are a custom visualization/plugin or embedding separate dashboards/components in your host application. There is no configuration flag in 6.1 that moves scoped Native Filter controls from the Filter Bar into their target chart tiles. GitHub link: https://github.com/apache/superset/discussions/44249#discussioncomment-18459917 ---- 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]
