diff options
| author | Tyler <tyler@tylerhoang.xyz> | 2026-05-14 01:01:02 -0700 |
|---|---|---|
| committer | Tyler <tyler@tylerhoang.xyz> | 2026-05-14 01:01:02 -0700 |
| commit | 764cd69bfc2e5a0cf504c8d6e4f032d35edd9a4c (patch) | |
| tree | 0143dbd55cceded1b8f4a8c689888fa9a76152ca /components/overview.py | |
| parent | 679baae2773dc7eaf419648ac7a59c4734fca735 (diff) | |
Completely refreshed Key Ratios, Historical Ratios, and DCF/Multiples
tab.
Diffstat (limited to 'components/overview.py')
| -rw-r--r-- | components/overview.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/overview.py b/components/overview.py index 9a0d162..433f6e5 100644 --- a/components/overview.py +++ b/components/overview.py @@ -329,7 +329,7 @@ def _render_relative_chart(ticker: str, info: dict, period: str): height=320, legend=dict(orientation="h", yanchor="bottom", y=1.02, xanchor="left", x=0), ) - st.plotly_chart(fig, use_container_width=True) + st.plotly_chart(fig, width="stretch") # ── Main render ────────────────────────────────────────────────────────────── @@ -442,4 +442,4 @@ def render_overview(ticker: str): hovermode="x unified", height=320, ) - st.plotly_chart(fig, use_container_width=True) + st.plotly_chart(fig, width="stretch") |
