Nervniyak

Results 17 comments of Nervniyak

Any news on this? Would've really liked having this feature.

https://github.com/simonbengtsson/jsPDF-AutoTable/pull/721

Everything gets even worse if I reduce `minCellWidth` of every **visual** column except for **Multi image** for example 13.2, it should've allowed more dynamic space to be filled fluidly, but...

The only workaround I found is to grab extra column, in this case **Multi image** has colspan of 3, which wastes a lot of useful space. In this case **Multi...

Please, this is crucial. It wastes a lot of space and is bug prone

@simonbengtsson this bug is really critical, it destroys even the most simple layout. Here's really clear example: ``` const doc = new jsPDF(); const body: CellDef[][] = []; const head:...

@simonbengtsson is it just not implemented? ![image](https://user-images.githubusercontent.com/34353798/89339442-da15d300-d6a6-11ea-9192-724746784a6c.png)

@simonbengtsson I need some simple solution, for example just applying `minWidth / cell.colspan`. I edited source code to something like this and it seems to be working fine for 95%...

I am using Angular 9 BTW ``` import * as jsPDF from 'jspdf'; import autoTable, { CellDef } from 'jspdf-autotable'; @Injectable({ providedIn: 'root' }) export class PdfTableExportService { public async...