harmdevries commited on
Commit
0acf06d
·
1 Parent(s): 363d1a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -67,11 +67,11 @@ fig.add_annotation({
67
  "showarrow": False,
68
  })
69
 
70
-
71
- tmp = copy.deepcopy(fig.data[0])
72
- tmp[0]["fillcolor"] = 'rgb(147, 196, 125)'
73
- tmp[0]["legendgroup"] = 'rgb(147, 196, 125)'
74
- tmp[0]['name'] = 'in progress'
75
 
76
  fig.data.append(tmp)
77
  st.plotly_chart(fig, use_container_width=True)
 
67
  "showarrow": False,
68
  })
69
 
70
+ st.write(fig.data[0][0])
71
+ tmp = copy.deepcopy(fig.data[0][0])
72
+ # tmp[0]["fillcolor"] = 'rgb(147, 196, 125)'
73
+ # tmp[0]["legendgroup"] = 'rgb(147, 196, 125)'
74
+ # tmp[0]['name'] = 'in progress'
75
 
76
  fig.data.append(tmp)
77
  st.plotly_chart(fig, use_container_width=True)