Official Support Area, Q&As, Discussions, Suggestions and Bug reports.
Forum's Guidelines
It looks like the "format" property of Export only accepts from 'A3', 'A4' onward. For printing in A1 or A2 size you would have to to set your PDF view page size via CSS like this:
.page {
position:relative;
border: ...;
width:calc(210mm * 1.25); /* replace A4 width size here with A1 or A2 width size */
height:calc(297mm * 1.25); /* replace A4 height size here with A1 or A2 height size */
padding:...
}
<div class="page">
...
</div>
Hi team, I added below code for setting page size but its look like same A4 size while generate PDF
.page {
position:relative;
width:calc(594mm * 1.25); /* replace A4 width size here with A1 or A2 width size */
height:calc(841mm * 1.25); /* replace A4 height size here with A1 or A2 height size */
}
Let KoolReport help you to make great reports. It's free & open-source released under MIT license.
Download KoolReport View demo