At the moment, I think, downsample=True is the only way to toggle the downsample1d and there's no way to customize how it's called, i.e. there's no way to set algorithm or some of its other options. Multiple options to implement that:
Overload downsample to accept a string (minmax) or a dict ({'algorithm': 'minmax', **other_downsample1d_opts})
Just allow extra kwargs to be passed to hvPlot and catch them internally, like max_px and threshold for dynspread.
At the moment, I think,
downsample=True
is the only way to toggle thedownsample1d
and there's no way to customize how it's called, i.e. there's no way to setalgorithm
or some of its other options. Multiple options to implement that:downsample
to accept a string (minmax
) or a dict ({'algorithm': 'minmax', **other_downsample1d_opts}
)max_px
andthreshold
fordynspread
.Small preference for the first option.
cc @droumis