Is there a way to re-position the slider/dropdowns in dynamic map using Holoviews?

848 Views Asked by At

I have a dynamic map containing many tif files, when I create the dynamic map it creates a time slider shown to the right of the image (which is what I want). The only thing is I wish to be able to reposition this slider to be above my image and maybe apply some styling to it. Is there a way to do this?

Example Shown Here

1

There are 1 best solutions below

3
On

So since HoloViews v1.13.x the widgets are indeed customizable as they are now built on top of the Panel library. To change the location you can set hv.output(widget_location=<option>) where the valid options are:

['left', 'bottom', 'right', 'top', 'top_left', 'top_right',
 'bottom_left', 'bottom_right', 'left_top', 'left_bottom',
 'right_top', 'right_bottom']

If you need further customization you can drop down to Panel itself as shown here