pdfObject
Configures the export settings for the exportPDF method.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
dataSource: {
data: [
{ date: new Date(2000, 1, 1), open: 10, high: 15, low: 8, close: 12 },
{ date: new Date(2000, 1, 2), open: 12, high: 18, low: 10, close: 16 }
]
},
dateField: "date",
series: [{
type: "candlestick",
openField: "open",
highField: "high",
lowField: "low",
closeField: "close"
}],
pdf: {
fileName: "stock-chart.pdf",
proxyURL: "/save",
author: "John Doe",
creator: "Kendo UI",
title: "Stock Chart Export"
}
});
</script>
In this article