pdf.jpegQualityNumber(default: 0.92)

Specifies the quality of the images within the exported file, from 0 to 1.

Example - configure JPEG quality for PDF export

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columns: [
    { field: "productName" },
    { field: "category" }
  ],
  dataSource: [
    { productName: "Tea", category: "Beverages" },
    { productName: "Coffee", category: "Beverages" }
  ],
  toolbar: ["pdf"],
  pdf: {
    jpegQuality: 0.5,
    fileName: "Products.pdf"
  }
});
</script>
In this article
pdf.jpegQuality
Not finding the help you need?
Contact Support