hvplot icon indicating copy to clipboard operation
hvplot copied to clipboard

Continuous colormaps not working

Open gioarma opened this issue 4 years ago • 0 comments

#548 should have closed this issue, but I still have problems. If I run the code in issue #327:

import numpy as np
import pandas as pd
import hvplot.pandas

cmap = 'cubehelix'

df = pd.DataFrame(np.random.randn(1000, 10), index=pd.date_range('1/1/2000', periods=1000))
df = df.cumsum()
df.hvplot(colormap=cmap)

I actually just get the default colormap, the colormap command is completely ignored:

Schermata 2021-05-05 alle 11 53 33

Software versions:

hvplot 0.7.1 holoviews 1.14.3 bokeh 2.3.1 jupyterlab 3.0.14 Chrome 90.0.4430.93 macOS 10.15.7

gioarma avatar May 05 '21 09:05 gioarma