You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've had this happen countless times, only anecdotal solution was to ensure that I wasn't throttling my internet connection with anything else at the same time - it was almost like the image was unable to render entirely before the screenshot was taken. I'm speaking as a layperson though because I have no idea if that's actually likely to affect the process or not - just my experience.
Description
Bottom row of my table is cut-off in the output using GT.save. Same result with both pdf and png output files.
Reproducible example
from pathlib import Path
import pandas as pd
data = {'A': [1,2,3], 'B': ['foo', 'bar', 'baz'], }
df = pd.DataFrame(data)
tbl = (gt.GT(df))
out_file = str(Path("table_export.pdf"))
tbl.save(file=out_file, web_driver='edge')
Expected result
Bottom row should be shown in full.
Development environment
table_export.pdf
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: