Skip to content

Commit

Permalink
Update plotter.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeanon committed Jan 2, 2025
1 parent d127f8d commit 677b164
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion shaketune/graph_creators/plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,8 @@ def plot_input_shaper_graph(self, data):
for shaper in shaper_table_data['shapers']
]

table = plt.table(cellText=table_data, colLabels=columns, bbox=[1.100, 0.535, 0.830, 0.240], cellLoc='center')
height = 0.048 * len(table_data)
table = plt.table(cellText=table_data, colLabels=columns, bbox=[1.100, 0.535, 0.830, height], cellLoc='center')
table.auto_set_font_size(False)
table.set_fontsize(10)
table.auto_set_column_width([0, 1, 2, 3, 4])
Expand Down

0 comments on commit 677b164

Please sign in to comment.