Is there a way to hide the Cesium Clock/Dial

**I would not use the Cesium clock or dial in my demo, **hence would love to hide it and get some more screen asset.

**please let me know if it is possible? **

thanks.

May be this would work. Setting the value to false?

animation
Boolean
true
optionalIf set to false, the Animation widget will not be created.

Hi Asmita,

if I understood your question correctly, you need to set the timeline and animation options in your viewer to “false”, like this:

viewer = new Cesium.Viewer(‘cesiumContainer’, {
timeline: false,
animation: false,
});

``

yes, thats exactly what I wanted. I could set the animation to false. Thanks for help regarding timeline.