Nervniyak
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? 
@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%...
@simonbengtsson review PR please.
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...