steffenc commited on
Commit
ac84ae9
·
1 Parent(s): fefd8dd

Remove colorbars

Browse files
Files changed (1) hide show
  1. opendashboards/assets/plot.py +4 -0
opendashboards/assets/plot.py CHANGED
@@ -8,6 +8,8 @@ def uid_diversty(df, rm_failed=True):
8
  plotting.plot_uid_diversty(
9
  df,
10
  remove_unsuccessful=rm_failed
 
 
11
  ),
12
  use_container_width=True
13
  )
@@ -22,6 +24,8 @@ def leaderboard(df, ntop, group_on, agg_col, agg, alias=False):
22
  agg_col=agg_col,
23
  agg=agg,
24
  alias=alias
 
 
25
  ),
26
  use_container_width=True
27
  )
 
8
  plotting.plot_uid_diversty(
9
  df,
10
  remove_unsuccessful=rm_failed
11
+ ).update_layout(
12
+ coloraxis_showscale=False,
13
  ),
14
  use_container_width=True
15
  )
 
24
  agg_col=agg_col,
25
  agg=agg,
26
  alias=alias
27
+ ).update_layout(
28
+ coloraxis_showscale=False,
29
  ),
30
  use_container_width=True
31
  )