pdf.keywords String
(default: null)
Specifies the keywords of the exported PDF file.
Example - set the keywords
<div id="chart"></div>
<script>
$("#chart").kendoChart({
pdf: {
keywords: "monthly report"
},
legend: {
position: "bottom"
},
series: [
{ name: "Series 1", data: [1, 2, 3] },
{ name: "Series 2", data: [3, 4, 5] }
]
});
var chart = $("#chart").getKendoChart();
chart.saveAsPDF();
</script>