Merged
Conversation
…abs; update localization strings for export options
cristian-tamblay
approved these changes
Apr 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add per-card multi-format export capabilities to dataset analysis cards. Each card now has a download menu
offering image (full card or chart-only), CSV, and JSON export options via a reusable
ExportableCardcomponent.Type of Change
Check all that apply like this [x]:
Changes (by file)
src/components/notebooks/dataset/ExportableCard.jsx: New reusable component wrapping MUICardwith adownload icon that opens a menu with 4 export options — card as image, chart as image, CSV, and JSON. Uses
html2canvasfor image capture and auto-detects recharts/plotly containers for chart-only exports.src/components/notebooks/dataset/tabs/NumericTab.jsx: ReplacedCardwithExportableCard, passing columnstats as
exportData.src/components/notebooks/dataset/tabs/TextTab.jsx: ReplacedCardwithExportableCard, passing columnstats as
exportData.src/components/notebooks/dataset/tabs/CategoricalTab.jsx: ReplacedCardwithExportableCard, passingcolumn stats as
exportData.src/components/notebooks/dataset/tabs/CorrelationsTab.jsx: ReplacedCardwithExportableCard, passingcorrelation data as
exportData.src/components/notebooks/dataset/tabs/QualityTab.jsx: Replaced bothCardelements withExportableCard,passing quality info and missing data ratios as
exportData.src/components/notebooks/dataset/tabs/OverviewTab.jsx: Replaced only the Missing Values Overview card withExportableCard; Dataset Preview and Column Types Distribution remain as plainCard.src/utils/i18n/locales/en/datasets.json: Added translation keys forexportCardImage,exportChartImage,exportCSV,exportImage,exportJSON.src/utils/i18n/locales/es/datasets.json: Added corresponding Spanish translations.Testing (optional)
Missing Values Overview).
exportDatais provided.Notes (optional)
ExportableCardcomponent detects charts at runtime by querying for.recharts-wrapperor.js-plotly-plotDOM elements within the card.found.