Skip to content

Commit

Permalink
fix/incorrect-bokeh-legend-attributes (#381)
Browse files Browse the repository at this point in the history
this fixes some cases where `d.show()` was failing, as theme implemented outdated/incorrect Legend attributes in bokeh

Authors:
  - Ajay Thorve (https://github.com/AjayThorve)

Approvers:
  - Bryan Van de Ven (https://github.com/bryevdv)

URL: #381
  • Loading branch information
AjayThorve authored Jun 24, 2022
1 parent 406dc3e commit 8d3979b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions python/cuxfilter/themes/dark.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ class DarkTheme(Theme):
"border_line_alpha": 0,
"background_fill_alpha": 0.25,
"background_fill_color": "#20262B",
"background_color": "#2f2f2f",
"text_color": "#a0a0a0",
"title_text_color": "#a0a0a0",
},
"ColorBar": {
"title_text_color": "#e0e0e0",
Expand Down
3 changes: 1 addition & 2 deletions python/cuxfilter/themes/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ class LightTheme(DefaultTheme):
"border_line_alpha": 0,
"background_fill_alpha": 0.4,
"background_fill_color": "#ffffff",
"background_color": "#ffffff",
"text_color": "#000000",
"title_text_color": "#000000",
},
"ColorBar": {
"title_text_color": "#000000",
Expand Down
3 changes: 1 addition & 2 deletions python/cuxfilter/themes/rapids.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ class RapidsTheme(Theme):
"border_line_alpha": 0,
"background_fill_alpha": 0.25,
"background_fill_color": "#20262B",
"background_color": "#2f2f2f",
"text_color": "#a0a0a0",
"title_text_color": "#a0a0a0",
},
"ColorBar": {
"title_text_color": "#e0e0e0",
Expand Down

0 comments on commit 8d3979b

Please sign in to comment.