i need to set heights for each table seperately as they are not same
s = ttk.Style()s.configure('Treeview', rowheight=40)table1 = ttk.Treeview(home_frame, style="mystyle.Treeview", columns=("Name"), show="tree") // 50table2 = ttk.Treeview(home_frame, style="mystyle.Treeview", columns=("Name"), show="tree") // 25table3 = ttk.Treeview(home_frame, style="mystyle.Treeview", columns=("Name"), show="tree") // 25table4 = ttk.Treeview(home_frame, style="mystyle.Treeview", columns=("Name"), show="tree") // 10
I tried to configure style, but I have four different treeviews that need to have different heights.
s = ttk.Style()s.configure('Treeview', rowheight=50)s.configure('Treeview_2', rowheight=25)s.configure('Treeview_3', rowheight=25)s.configure('Treeview_4', rowheight=10)
but didn't work