pdf.jpegQualityNumber
(default: 0.92)
Specifies the quality of the images within the exported file, from 0 to 1.
Example
<div id="gantt"></div>
<script>
$("#gantt").kendoGantt({
dataSource: [
{ id: 1, title: "Task 1", start: new Date("2023/1/1"), end: new Date("2023/1/5") }
],
toolbar: ["pdf"],
pdf: {
jpegQuality: 0.8
}
});
</script>
In this article