Ankush05 commited on
Commit
167aade
·
1 Parent(s): 5830c82
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -36,12 +36,16 @@ def View_Reminders():
36
  # Reorder the columns
37
  df = df.reset_index(drop=True)
38
  df.index += 1
 
 
 
39
  df = st.data_editor(
40
  df,
41
  column_config={
42
  "Status": st.column_config.CheckboxColumn(
43
  "Status", help="Check to mark as done"
44
- )
 
45
  },
46
  )
47
 
 
36
  # Reorder the columns
37
  df = df.reset_index(drop=True)
38
  df.index += 1
39
+ ff = pd.DataFrame(
40
+ np.random.randn(20, 3),
41
+ columns=['a', 'b', 'c'])
42
  df = st.data_editor(
43
  df,
44
  column_config={
45
  "Status": st.column_config.CheckboxColumn(
46
  "Status", help="Check to mark as done"
47
+ ),
48
+ "Chart": st.column_config.LineChartColumn(ff),
49
  },
50
  )
51