pdf.jpegQualityNumber(default: 0.92)
Specifies the quality of the images within the exported file, from 0 to 1.
Example
<div id="treelist"></div>
<script>
$("#treelist").kendoTreeList({
columns: [
{ field: "Name" },
{ field: "Position" }
],
dataSource: [
{ id: 1, Name: "Daryl Sweeney", Position: "CEO", parentId: null },
{ id: 2, Name: "Guy Wooten", Position: "Chief Technical Officer", parentId: 1 }
],
pdf: {
jpegQuality: 0.8
}
});
</script>
In this article