pdf.jpegQualityNumber
(default: 0.92)
Specifies the quality of the images within the exported file, from 0 to 1.
Example - set the pdf jpegQuality
<div id="chart"></div>
<script>
$("#chart").kendoChart({
pdf: {
jpegQuality: 0.5
},
series: [
{ data: [1, 2, 3] }
]
});
</script>
In this article