Printing Form to PDF Font size

I am using
fd.toolbar.buttons.push({
icon: 'Print',
class: 'btn-outline-primary',
text: 'Print',
click: function() {
fd.exportToPDF(fd.field('Title').value,
{
paperSize: 'A4',
landscape: false,
multiPage: true
});
}
});
this works except the font is very small how do I do this so the font is larger say 14 pt?

Hello @jktodd007,

Please try out adding this CSS to change the font size on exported PDF:

.k-pdf-export {
    font-size: 14px;
}