No graph after enable Pivot Table v2 feature flag #36141
Replies: 7 comments
-
|
Hi @nohnaimer! I'm Dosu and I’m helping the superset team. The Pivot Table v2 chart should be available in Superset 5.0.0 without any extra installation steps—just enabling the PIVOT_TABLE_V2 flag in your config is enough. However, in Docker setups, Superset only loads config overrides from a file named superset_config_docker.py in ./docker/pythonpath_dev/ on your host. Make sure your FEATURE_FLAGS are set in that file, not elsewhere, and that the file is actually being picked up by the container. If you want to use a different config file, you must set the SUPERSET_CONFIG_PATH environment variable to the full path inside the container and restart Superset for changes to take effect. After updating the config, use docker compose down -v and docker compose up to fully restart and reload everything. You can confirm the frontend received the flag by checking window.featureFlags in your browser console—PIVOT_TABLE_V2 should be true if it worked. If you still don’t see the chart, clear your browser cache or try an incognito window to rule out stale assets. Also, double-check the Superset version in the UI (About dialog or footer) to make sure you’re actually running 5.0.0, as Docker images sometimes default to older versions if the TAG variable isn’t set correctly. For more details, see this discussion and this versioning issue. To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.
-
|
Hi, I checked setting on browser and it is True:
Any ideas what do next? |
Beta Was this translation helpful? Give feedback.
-
|
Since window.featureFlags.PIVOT_TABLE_V2 is true, your backend config is working and the frontend is receiving the flag. The most common reasons the Pivot Table v2 chart still doesn't show up are:
If none of these solve it, open the chart creation dialog and check if "Pivot Table v2" appears in the chart type list. If not, let me know what chart types you do see, and check the browser console and server logs for any errors related to chart plugins or asset loading. This will help narrow down whether it's a registration, build, or config issue. To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.
-
|
Hi, I checked.
Still no Pivot Table v2 anywhere.... |
Beta Was this translation helpful? Give feedback.
-
|
Pivot Table v2 is registered as a static chart plugin in Superset 5.0.0 and should always appear in the chart picker if the feature flag is enabled and the deny list is empty. Since your config and version are correct, this points to a frontend asset or plugin registry issue—often caused by incomplete asset builds or stale Docker volumes. Superset 5.0.0 can show missing UI elements if the frontend static assets aren't served or built correctly, especially in Docker setups where the asset build process may still be running or volumes are cached source. Try these steps:
Wait for the frontend asset build to fully complete before logging in. If you still don't see Pivot Table v2, open the browser developer console and check for errors related to chart plugin registration or missing assets, and let me know what chart types do appear in the chart picker—this will help pinpoint if it's a broader asset or registry issue. To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.
-
|
Hi, Same result. Still don't see Pivot Table v2. Any ideas? Maybe in some logs on server get more information? |
Beta Was this translation helpful? Give feedback.
-
|
Moving this to discussion as others may be able to help you there. Feel free to continue working with dosu. |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
Bug description
Superset work on Linux Server use docker. Superset version 5.0.0. In docker/pythonpath_dev/superset_config.py I add configuration:
FEATURE_FLAGS = {"ALERT_REPORTS": True,"ALERT_REPORT_SLACK_V2": True,"PIVOT_TABLE_V2": True}
After reboot docker container and no PIVOT_TABLE_V2 in web interface.
Maybe need in some place add another configuration? Any ideas?
Thank you!
Screenshots/recordings
No response
Superset version
5.0.0
Python version
3.10
Node version
16
Browser
Chrome
Additional context
No response
Checklist
Beta Was this translation helpful? Give feedback.
All reactions