如何在jspdf中没有颜色的同一单元格中显示文本

How to text display in the same cell without color in jspdf

提问人:TBLZ 提问时间:8/30/2023 最后编辑:TBLZ 更新时间:8/30/2023 访问量:23

问:

  • 如何在单元格中显示不同的颜色,就像
    在图片中一样。
  • 该表是使用 jspdf-autotable 生成的。
  • 我在文档中没有找到相关方法。

这是我的代码。 `

doc.autoTable({
    startY: contentHeight,
    html: `#${key}`,
    theme: 'grid',
    styles: {
      font: 'SourceHanSansCN',
      fontStyle: 'normal'
    },
    columnStyles: {
      0: {cellWidth: 'wrap'}
    },
    pageBreak: 'auto'

` 在此处输入图像描述

jspdf-autotable

评论


答: 暂无答案