When trying to use hvplot explorer with a temporal xarray.DataArray like da.hvplot.explorer() with alternative backends like matplotlib and plotly, with gives error:
File ~/.local/lib/python3.8/site-packages/holoviews/plotting/plot.py:1335, in GenericElementPlot.get_padding(self, obj, extents)
1333 aspect = self.get_aspect(xspan, yspan)
1334 if aspect > 1:
-> 1335 xpad = tuple(xp/aspect for xp in xpad) if isinstance(xpad, tuple) else xpad/aspect
1336 else:
1337 ypad = tuple(yp*aspect for yp in ypad) if isinstance(ypad, tuple) else ypad*aspect
UFuncTypeError: ufunc 'divide' cannot use operands with types dtype('int64') and dtype('<m8[ns]')