Bibek Mukherjee commited on
Commit
9e04e9f
·
verified ·
1 Parent(s): 4ba1708

Update src/frontend/app.py

Browse files
Files changed (1) hide show
  1. src/frontend/app.py +4 -1
src/frontend/app.py CHANGED
@@ -1440,7 +1440,10 @@ def show_liver_prediction():
1440
 
1441
  fig.update_layout(
1442
  polar=dict(radialaxis=dict(visible=True, range=[0, 1])),
1443
- showlegend=False
 
 
 
1444
  )
1445
 
1446
  st.plotly_chart(fig)
 
1440
 
1441
  fig.update_layout(
1442
  polar=dict(radialaxis=dict(visible=True, range=[0, 1])),
1443
+ showlegend=False,
1444
+ margin=dict(l=40, r=40, t=20, b=20), # Adjust margins to shift graph left
1445
+ width=400, # Control the width of the graph
1446
+ height=400
1447
  )
1448
 
1449
  st.plotly_chart(fig)