holoviz / panel

Panel: The powerful data exploration & web app framework for Python
https://panel.holoviz.org
BSD 3-Clause "New" or "Revised" License
4.55k stars 494 forks source link

Cannot see whiskers on hvplot box plot when using Fast dark theme #4313

Open MarcSkovMadsen opened 1 year ago

MarcSkovMadsen commented 1 year ago

panel==0.14.2

image

import panel as pn
import hvplot.pandas  # noqa
import pandas as pd

from panel_modal import Modal

pn.extension(sizing_mode="stretch_width", template=None)

age_list = [8, 10, 12, 14, 72, 74, 76, 78, 20, 25, 30, 35, 60, 85]
df = pd.DataFrame({"gender": list("MMMMMMMMFFFFFF"), "age": age_list})
plot = df.hvplot.box(y='age', by='gender', height=400, width=400, legend=False, ylim=(0, None))

pn.template.FastListTemplate(
    main=[plot]
).servable()
MarcSkovMadsen commented 1 year ago

I've asked the Bokeh community for help in https://discourse.bokeh.org/t/how-do-i-set-the-line-color-of-a-whisker-in-a-bokeh-theme/9982

CatChenal commented 1 year ago

I've asked the Bokeh community for help in https://discourse.bokeh.org/t/how-do-i-set-the-line-color-of-a-whisker-in-a-bokeh-theme/9982

I've posted a workaround there.