pdf.keepPNGBoolean
(default: false)
If set to true all PNG images contained in the exported file will be kept in PNG format.
Example - enable pdf keepPNG
<div id="chart"></div>
<script>
$("#chart").kendoChart({
pdf: {
keepPNG: true
},
series: [
{ data: [1, 2, 3] }
]
});
</script>
In this article