alexaxbreadbytes commited on
Commit
a5a2a54
1 Parent(s): 083e6de

chart taller

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -551,7 +551,7 @@ def runapp() -> None:
551
 
552
  #style layout
553
  fig.update_layout(
554
- height = 500,
555
  xaxis=dict(
556
  title="Exit Date",
557
  tickmode='array',
@@ -569,7 +569,7 @@ def runapp() -> None:
569
  plot_bgcolor = 'rgba(10, 10, 10, 1)'
570
  )
571
 
572
- st.plotly_chart(fig, theme=None, use_container_width=True, height=500)
573
  st.write()
574
  df['Per Trade Return Rate'] = df['Return Per Trade']-1
575
 
 
551
 
552
  #style layout
553
  fig.update_layout(
554
+ height = 550,
555
  xaxis=dict(
556
  title="Exit Date",
557
  tickmode='array',
 
569
  plot_bgcolor = 'rgba(10, 10, 10, 1)'
570
  )
571
 
572
+ st.plotly_chart(fig, theme=None, use_container_width=True, height=550)
573
  st.write()
574
  df['Per Trade Return Rate'] = df['Return Per Trade']-1
575