view.type String (default: "canvas")

Defines the surface type. It accepts canvas or svg. This option is supported only for DPL.

Example - customizing the type of pages' surfaces

<div id="pdf-viewer"></div>
<script>
    $("#pdf-viewer").kendoPDFViewer({
        view: {
          type: "svg"
        }
        // dplProcessing settings
    });
</script>
In this article