由剑道导出的PDF页面上的保证金

时间:2016-01-28 15:50:22

标签: javascript pdf kendo-ui

我尝试为Kendo UI导出的PDF页面设置边距,

我使用drawDOM并将选项对象设置为 -

{
    options: {
        margin: {
            bottom: 50
        }
    }
}

但我没有在PDF中获得任何保证金。

HERE IS A DEMO

如何让它发挥作用?

1 个答案:

答案 0 :(得分:1)

您在exportPDF调用中缺少选项对象。

应该是return draw.exportPDF(root, {margin: {bottom: "50"}});

查看PDFOptions的参考资料,了解可在第二个参数中应用的内容。