With the following code:
pn.extension(sizing_mode='stretch_width')
start=df.index[0]
end = df.index[-1]
time_slider = pn.widgets.DateRangeSlider(value=(start,end), name='Fecha', start=start, end=end, format="%d/%m/%y %H:%M:%S")
time_slider
I get this Time Slider: TimeSlider
Is there any formatting tool so I can change the step from days to hours?
Thank you!