holoviews icon indicating copy to clipboard operation
holoviews copied to clipboard

Fix bar with one value in it

Open hoxbro opened this issue 1 week ago • 1 comments

Fixes #6300

A MRE:

import holoviews as hv
import pandas as pd

hv.extension("bokeh")

df = pd.DataFrame({"time": [1], "value": [-1]})
hv.Bars(df)

Need to add the MRE as a test.

hoxbro avatar Jun 28 '24 19:06 hoxbro