Syncfusion has launched BoldDesk- an AI-first customer service software. This support portal is powered by BoldDesk. Start free trial | Book a free demo
We can enable/disable the Zoom functionality by using "EnableZoom" property in ZoomSettings as follows:
@(Html.EJ().Map("container")
.ZoomSettings(zm=>
{
zm.EnableZoom(false);
})
)