I try to plot a large dataseries with holoviews, bokey and datashader. The plot shows without any issues, but with zooming in, the plot doesn't change the resolution, so the dataseries is very pixelated. I did it before on another PC and there it worked without problems. Also on the HV-Website, the examples don't get a better resolution by zooming in, although it worked on the other PC. Have imported this:
import holoviews as hv
import datashader
import holoviews.operation.datashader as hd
hv.extension('bokeh')
hd.datashade(hv.Curve((x,y)))
In the documentation is described, that a jupyther or bokeh server hast to be run. Didn't i done this with the hv.extension?