pdf.keepPNGBoolean
(default: false)
If set to true
all PNG images contained in the exported file will be kept in PNG format.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
pdf: {
fileName: "PropertyGrid.pdf",
keepPNG: true
},
model: {
foo: "bar",
baz: 5
}
});
</script>
In this article