When I use DataShader to render the plot all the style information is lost, in particular all the serieses are shown in the color. How can i change the series colours / style in the datashader plot?
import holoviews as hv
from holoviews.operation.datashader import datashade
hv.extension('bokeh')
xs = [0.1* i for i in range(100)]
curve1 = hv.Curve((xs, [np.sin(0.5*x) for x in xs]))
curve2 = hv.Curve((xs, [np.sin(0.75*x) for x in xs]))
overlay = hv.Overlay([curve1,curve2])
shaderplot = datashade(overlay)
display(overlay + shaderplot)