Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/vuegen/quarto_reportview.py
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ def _show_dataframe(
# Generate path for the DataFrame image
df_image = Path(static_dir) / f"{dataframe.title.replace(' ', '_')}.png"
dataframe_content.append(
f"df.dfi.export('{Path(df_image).resolve().as_posix()}', max_rows=10, max_cols=5)\n```\n"
f"df.dfi.export('{Path(df_image).resolve().as_posix()}', max_rows=10, max_cols=5, table_conversion='matplotlib')\n```\n"
)
# Use helper method to add centered image content
dataframe_content.append(self._generate_image_content(df_image))
Expand Down