How can I change the rowStyle in jsPDF?

57 Views Asked by At

Issue Description

I want to change the text color of the non-alternative rows

Code Sample

autoTable(doc, {

    startY: 120,
    head: [["Descripción", "Valor", "Impuestos"]],
    body: tableData,
    theme: "striped",
    styles: { halign: "left",},
    columnStyles: {
      0: { cellWidth: 80, textColor: [255, 255, 255] },
      1: { textColor: [255, 255, 255] },
      2: { textColor: [255, 255, 255] },
    },
    headStyles: { fillColor: [0, 10, 104], textColor: [255, 255, 255] },
    alternateRowStyles: { fillColor: [35, 46, 149]},
    tableLineColor: [6, 23, 39],
    tableLineWidth: 0.1,
  });
0

There are 0 best solutions below