jsPDF-AutoTable
jsPDF-AutoTable copied to clipboard
jsPDF plugin for generating PDF tables with javascript
Hey everyone, I am using the plugin, everything is working fine, but in my website I have some spans in the table to change the color to red, but when...
I am trying to change the left margin that by default is added to the tables when they are created but I cannot do it in any way, I define...
as suggested in https://github.com/angular/angular-cli/issues/26888#issuecomment-1906034537
Hello, I made changes to package.json to make it compatible with Angular 17 and the new esbuild/vite bundler that the angular-cli is using. I tried multiple configurations, but this last...
This is my code: ``` exportAsPdf(tableName: string, columns: any, exportData: any, minimal?: boolean) { const doc = new jsPDF('l', 'mm', [minimal ? 600 : 297, 210]); const columnStyles = {};...
When I create a PDF using the `html` property and the theme styles turned off, `cellPadding` values are ignored when calculating column widths. The result is cells contents touches together...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.3 to 1.15.4. Commits 6585820 Release version 1.15.4 of the npm package. 7a6567e Disallow bracketed hostnames. 05629af Prefer native URL instead of deprecated url.parse. 1cba8e8 Prefer native...
When I have one cell with a very long text, the table layout breaks. See [reproduction](https://github.com/mtdvlpr/reproduction/tree/autotable) or [example output](https://github.com/simonbengtsson/jsPDF-AutoTable/files/13779068/test-3.pdf). I expect the long cell to break the text and increase...
horizontalPageBreakRepeat column page break is going to last page, should happen in the next page.
#horizontalPageBreakRepeat When there is column is break, the breaking other columns suppose to come in the next page but it's going to the last page. When we have more than...
I would like an enhancement in which we can set fill color of a cell/ text color of a cell with alpha/opacity value. I was generating different colors based on...