Fix vertical timeline scaling by disabling container width stretch

Vertical graphs now render at natural size instead of stretching to
fill container width, which was making nodes appear giant.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-03 14:05:01 +01:00
parent 2653b5a0ee
commit 94dbbc694f

View File

@@ -36,7 +36,9 @@ def render_timeline_tab(data, file_path):
direction = "LR" if view_mode == "🌳 Horizontal" else "TB"
try:
graph_dot = htree.generate_graph(direction=direction)
st.graphviz_chart(graph_dot, use_container_width=True)
# Vertical mode: don't stretch to container width (keeps nodes small)
use_full_width = (direction == "LR")
st.graphviz_chart(graph_dot, use_container_width=use_full_width)
except Exception as e:
st.error(f"Graph Error: {e}")