Hi
I have a kendo chart, that im trying to export to pdf. This seems to work, however, when i try to print it out, it will make the lines into rectangles.
I'm guessing this somehow means that the pdf generated by this export method, creates some kind of invalid syntax, that is rendered wrong, when printed?
I'm
$scope.bmiGraph.exportPDF({ paperSize:
"auto"
, landscape:
true
, margin: { left:
"1cm"
, top:
"1cm"
, right:
"1cm"
, bottom:
"1cm"
} }).done(
function
(data) {
kendo.saveAs({
dataURI: data,
fileName:
"chart.pdf"
});
});
I have attached the two pdf files. "chart.pdf"("chart.zip") is the pdf generated by the "exportPDF" method. "chart_printed_as_pdf.pdf"("chart_printed_as_pdf.zip") is the result of what is printed from the pdf, which is 100% identical to what it will look like when printed out on normal paper.
How do i make the printed output identical to what the generated pdf?
There is also an error with the character encoding. Is there an easy fix to this aswell?
Best regards