Hi,
Is there a way to remove sections from a timeslider bar? I know you can make it compact but it still have the same parts just tighter and taller which makes it eat up too much space in my app. I would like to remove the items with red Xs in the images below.
Solved! Go to Solution.
Hi there,
We have an enhancement plan for this. However, I do not know when we will install the enhancement. In meantime, you could hide the components using css classes as shown below. Please note that this is not supported and you may run into issue.
.esri-time-slider__animation,
.esri-time-slider__min,
.esri-time-slider__max,
.esri-time-slider__previous,
.esri-time-slider__next{
display: none;
}
Hi there,
We have an enhancement plan for this. However, I do not know when we will install the enhancement. In meantime, you could hide the components using css classes as shown below. Please note that this is not supported and you may run into issue.
.esri-time-slider__animation,
.esri-time-slider__min,
.esri-time-slider__max,
.esri-time-slider__previous,
.esri-time-slider__next{
display: none;
}
Thanks! That is what I need.