cyberosa
commited on
Commit
·
db08a72
1
Parent(s):
3f72b8c
make bigger the winning traders graph
Browse files- tabs/trader_plots.py +2 -0
tabs/trader_plots.py
CHANGED
@@ -158,6 +158,8 @@ def plot_winning_metric_per_trader(traders_winning_df: pd.DataFrame) -> gr.Plot:
|
|
158 |
xaxis_title="Week",
|
159 |
yaxis_title="Weekly winning percentage %",
|
160 |
legend=dict(yanchor="top", y=0.5),
|
|
|
|
|
161 |
)
|
162 |
fig.update_xaxes(tickformat="%b %d\n%Y")
|
163 |
|
|
|
158 |
xaxis_title="Week",
|
159 |
yaxis_title="Weekly winning percentage %",
|
160 |
legend=dict(yanchor="top", y=0.5),
|
161 |
+
width=1000, # Adjusted for better fit on laptop screens
|
162 |
+
height=600, # Adjusted for better fit on laptop screens
|
163 |
)
|
164 |
fig.update_xaxes(tickformat="%b %d\n%Y")
|
165 |
|