Hi there,
We are using Kendo Charts in our application. We can successfully export the charts using the following jQuery.
var chart = $("#" + idChart).getKendoChart();
chart.exportPDF({ paperSize: "auto", margin: { left: "1cm", top: "1cm", right: "1cm", bottom: "1cm" } }).done(function (data) {
kendo.saveAs({
dataURI: data,
fileName: "chart.pdf",
proxyURL: "@Url.Action("Export_Save", "Home")"
});
});
But spanish accents are not rendering properly in the output PDF. Is there any configuration to be set?
Thank you.
We are using Kendo Charts in our application. We can successfully export the charts using the following jQuery.
var chart = $("#" + idChart).getKendoChart();
chart.exportPDF({ paperSize: "auto", margin: { left: "1cm", top: "1cm", right: "1cm", bottom: "1cm" } }).done(function (data) {
kendo.saveAs({
dataURI: data,
fileName: "chart.pdf",
proxyURL: "@Url.Action("Export_Save", "Home")"
});
});
But spanish accents are not rendering properly in the output PDF. Is there any configuration to be set?
Thank you.