We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bottom row of my table is cut-off in the output using GT.save. Same result with both pdf and png output files.
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')
Bottom row should be shown in full.
table_export.pdf
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
GT.save()
No branches or pull requests
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: