zoomRate Number
(default: 0.25)
Specifies the zoom rate that could be applied to the pages. Used when zooming on mousewheel
and for the zoomIn
and zoomOut
tools.
Example - customizing the zoomRate
<div id="pdf-viewer"></div>
<script type="module">
$("#pdf-viewer").kendoPDFViewer({
pdfjsProcessing: {
file: "https://demos.telerik.com/kendo-ui/content/web/pdfViewer/sample.pdf"
},
zoomMax: 2
});
</script>