dosubot[bot] commented on issue #30645: URL: https://github.com/apache/superset/issues/30645#issuecomment-2419813265
<!-- Greeting --> Hey @jacob-roldan! 👋 I'm here to help you with any bugs, questions, or becoming a contributor. Let's squash those bugs together! <!-- Answer --> I found a similar open issue that might be related to the problem you're experiencing: [Upon download as PDF, charts on a long dashboard render as loading image](https://github.com/apache/superset/issues/29719). This issue suggests that the problem might be due to the virtualization feature, which off-loads charts that are away from the viewport. A workaround is to disable the virtualization feature by updating the Superset configuration: 1. Open the `superset_config_docker.py` file. 2. Update the `FEATURE_FLAGS` variable as follows: ```python FEATURE_FLAGS = { "DASHBOARD_VIRTUALIZATION": False, } ``` This change ensures that the dashboard loads all charts at once, preventing loading spinners from appearing in the downloaded PDF or image <sup>[[1]](https://github.com/apache/superset/issues/29719)</sup>. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- 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]
