I’ve overlaid 3 polygons and I’m trying to read the hover boxes but unfortunately they hide one another. Minimal reproducible example (using points instead of polygons):
I don’t know of a solution, but please consider posting a minimum, reproducible example and a small video showing the issue. It will make it easy for someone with the knowledge to try to help.
I really appreciate you help @ahuang11, this works well thanks - just wondering, is there any documentation that I can read more about options like legend_opts?
Can you help submit an issue on Issues · holoviz/holoviews · GitHub or hvplot to document legend_opts, and perhaps maybe copy the following snippet:
It’s key that you understand that hvplot is built off HoloViews, so anything that works in HoloViews should work on hvplot objects (which are mostly HoloViews objects, except in some cases)–that means, hv.help(df.hvplot(...)) will work, and that will list out all the options associated with the plot. If it’s a Layout/DynamicMap/HoloMap/Overlay, you have to figure out the base element, and do something like hv.help(hv.Scatter) or else you’re just getting options on those containers.