diff --git a/app/services/__pycache__/graph_generator.cpython-312.pyc b/app/services/__pycache__/graph_generator.cpython-312.pyc index f04f751..f275566 100644 Binary files a/app/services/__pycache__/graph_generator.cpython-312.pyc and b/app/services/__pycache__/graph_generator.cpython-312.pyc differ diff --git a/app/services/graph_generator.py b/app/services/graph_generator.py index 616b337..0245525 100644 --- a/app/services/graph_generator.py +++ b/app/services/graph_generator.py @@ -1418,11 +1418,11 @@ class GraphGenerator: import textwrap # Optimal sizing for HR Zones table (5 columns, 8 rows) - fig, ax = plt.subplots(figsize=(18, 12)) + fig, ax = plt.subplots(figsize=(14, 8)) ax.axis("off") # Column widths - slightly wider for first column which has longer text - col_widths = [0.24, 0.19, 0.19, 0.19, 0.19] + # col_widths = [0.24, 0.19, 0.19, 0.19, 0.19] # Wrap text in cells for better readability wrapped_data = [] @@ -1443,7 +1443,7 @@ class GraphGenerator: cellLoc="center", loc="center", colColours=["#4dd0e1"] * len(columns), - colWidths=col_widths, + # colWidths=col_widths, ) # Style the table