I have such a method that converts div with id="pdf-div" to pdf.
Html looks correct, and has all styles that are needed, but result pdf has no font-weight style(that is like font-weight:900) on elements, but font-weight: bold works correct.
kendo.drawing.drawDOM("#pdf-div", {
scale: scale,
fitWidth: true,
paperSize: "A4",
landscape: isLandscape,
margin: margin,
})
.then(function (group) {
kendo.drawing.pdf.saveAs(group, fileName, proxyURL, function () {
// window.close();
});
})