How to set initial value for holomap?

How do I set the initial value of a kdim in the output of a holomap?

Consider a simple example
hm = hv.HoloMap({i: hv.Curve([i,i]) for i in range(-5,5)}, kdims=['i'])
When showing hm, the slider will be set to -5. Is there a way to initialize it at, say, 0?

I wish to draw user’s attention to a particular value first, and then invite them to explore around it.

Creating a dimension with a default value.

import holoviews as hv
hv.extension("bokeh")

kdim = hv.Dimension("i", default=0)
hm = hv.HoloMap({i: hv.Curve([i,i]) for i in range(-5,5)}, kdims=[kdim])

thank you!