-1
I’m using Tkinter in Python, and also using Table.
In my code I have a line, as follows:
table = Table (frame, dataframe=frame_input['id', 'name', 'usando_limit', 'telephone']], width = (width - 100), height = (height - 50), showtoolbar=False, showstatusbar=False)
However, when I run the code, some table columns that appear in the computer display do not show the full text, for example, the column 'name' cuts the full names of some clients (you can see only the beginning of the names, not the full name. How do I automatically (or even manually) adjust the width of the columns to the cell contents?
I just need to adjust the width of the column to the width of the contents of the cells in the spreadsheet, I haven’t been able to do or found anything about.
– Ricardo
@Ricardo you can edit the question by showing the full code?
– Eddy Albines