I want to create a plot using hvplot that has a border around all four sides, like the default style of matplotlib when I'm using Jupyter notebook. Example:
However, using hvplot, whether I use extension("bokeh") or extension("matplotlib"), the plots come out with no border:
I tried opts(border = 1), but this doesn't have the desired effect.
Is there a way for hvplot to output a plot with a border around all four sides like matplotlib?