Is it possible to remove the Play, Forward and Backward buttons from a TimeSlider? This was asked over 10 years ago, but the codebase has changed a lot since then. Thanks!
Solved! Go to Solution.
Yes, this can be done with CSS:
div.esri-time-slider__animation,
div.esri-time-slider__previous,
div.esri-time-slider__next {
display: none;
}
Yes, this can be done with CSS:
div.esri-time-slider__animation,
div.esri-time-slider__previous,
div.esri-time-slider__next {
display: none;
}
This worked. Thanks!