sdesai1-DA commented on issue #33904:
URL: https://github.com/apache/superset/issues/33904#issuecomment-3444005506
## Issue Recurring in Version 5.0.0
Hi @fardin-developer, @msyavuz and team,
I'm experiencing this same issue recurring in **Superset version 5.0.0**
using **Chrome browser**. The "Download as Image" option for scrollable table
charts in dashboards is still only capturing the visible section rather than
the full table content.
### Configuration Details
Here's my current `superset_config.py` configuration:
```python
WTF_CSRF_ENABLED = False
TALISMAN_ENABLED = False
OVERRIDE_HTTP_HEADERS = {'X-Frame-Options': 'ALLOWALL'}
CUSTOM_SECURITY_MANAGER = DASecurityManager
# Enable dashboard embedded feature
EMBEDDED_SUPERSET = True
FEATURE_FLAGS = {
"EMBEDDED_SUPERSET": True,
"DASHBOARD_VIRTUALIZATION": False,
"ENABLE_TEMPLATE_PROCESSING": True,
"ENABLE_DASHBOARD_SCREENSHOT_ENDPOINTS": True,
"THUMBNAILS": True,
"ENABLE_DASHBOARD_DOWNLOAD_WEBDRIVER_SCREENSHOT": True,
"PLAYWRIGHT_REPORTS_AND_THUMBNAILS": True
}
ENABLE_CORS = True
CORS_OPTIONS = {
"supports_credentials": True,
"allow_headers": ["*"],
"resources": ["*"],
"origins": ["http://localhost:3000"],
}
EXTRA_CATEGORICAL_COLOR_SCHEMES = [
{
"id": "light_to_dark_blue",
"label": "Light to Dark Blue",
"description": "Strictly blue gradient",
"isSequential": True,
"isDiverging": True,
"colors": [
"#e6f2ff", "#cce5ff", "#99ccff", "#66b2ff",
"#3399ff", "#0073e6", "#005bb5", "#003d80",
],
}
]
DEFAULT_CATEGORICAL_COLOR_SCHEME = "light_to_dark_blue"
GUEST_ROLE_NAME = 'Gamma'
```
### Questions
- Is this a regression in version 5.0.0, or could my configuration be
interfering with the fix?
I've already set `DASHBOARD_VIRTUALIZATION: False` as recommended in
previous discussions, but the issue persists. Any guidance would be greatly
appreciated.
**Environment:**
- Superset Version: 5.0.0
- Browser: Chrome
Thanks for the continued work on this issue!
--
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]