I am using diagram zoom method and
initially I am passing the zoom level as 1,
so for zoom in I am making the zoom level by 0.2
and for zoom out it will be decremented by 0.2
so this is causing improper misbehaviour in zoom of diagram
this.zoomLevel will be varying by 0.2
let diagramInstance;
let diagramObj = document.getElementById("diagram");
diagramInstance = diagramObj.ej2_instances[0];
diagramInstance.zoom(this.zoomLevel);