dmk99 / react-pdf-table

Storybook Available
https://dmk99.github.io/react-pdf-table
MIT License
152 stars 62 forks source link

Can we add page breaks #40

Closed sr2399 closed 2 years ago

sr2399 commented 3 years ago

Can we add page breaks according to data consuming in the first page and remaining pages at same page break

dmk99 commented 2 years ago

Dynamically adding page breaks is not the easiest thing to implement especially because, to the best of my knowledge, react-pdf/renderer does not expose the bounding boxes of the elements.

A workaround for this would be to determine the number of rows you can fit into a single page and then split the array into multiple chunks. Then render each array chunk on it's own page.