Daniel Cerda Escobar commited on
Commit
23d83db
·
1 Parent(s): 7769dd4

Upgrade plot

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -205,7 +205,7 @@ with col2:
205
  with col2:
206
  chart_data = st.session_state["output_4"]
207
  fig = px.bar(chart_data, x='category', y='count', color='category')
208
- fig.update_layout(xaxis_title=None)
209
- st.plotly_chart(fig,use_container_width=True, theme=None )
210
 
211
 
 
205
  with col2:
206
  chart_data = st.session_state["output_4"]
207
  fig = px.bar(chart_data, x='category', y='count', color='category')
208
+ fig.update_layout(xaxis_title=None, yaxis_title=None, showlegend=False)
209
+ st.plotly_chart(fig,use_container_width=True, theme=True )
210
 
211