Top Related Projects
Quick Overview
jsPDF-AutoTable is a plugin for jsPDF that simplifies the process of creating tables in PDF documents using JavaScript. It offers a range of customization options and features to generate professional-looking tables with minimal effort.
Pros
- Easy integration with jsPDF for creating tables in PDF documents
- Extensive customization options for table styling and layout
- Supports both client-side and server-side usage
- Active development and community support
Cons
- Requires jsPDF as a dependency
- Limited support for complex table structures
- May have performance issues with very large datasets
- Learning curve for advanced customization options
Code Examples
- Basic table creation:
import jsPDF from 'jspdf'
import autoTable from 'jspdf-autotable'
const doc = new jsPDF()
autoTable(doc, { head: [['Name', 'Email', 'Country']], body: [
['David', 'david@example.com', 'Sweden'],
['Castille', 'castille@example.com', 'Spain'],
] })
doc.save('table.pdf')
- Customizing table styles:
autoTable(doc, {
head: [['Name', 'Email', 'Country']],
body: [
['David', 'david@example.com', 'Sweden'],
['Castille', 'castille@example.com', 'Spain'],
],
styles: {
cellPadding: 5,
fontSize: 12,
valign: 'middle',
halign: 'center',
},
headStyles: { fillColor: [41, 128, 185], textColor: 255 },
alternateRowStyles: { fillColor: [245, 245, 245] },
})
- Using hooks for advanced customization:
autoTable(doc, {
head: [['Name', 'Email', 'Country']],
body: [
['David', 'david@example.com', 'Sweden'],
['Castille', 'castille@example.com', 'Spain'],
],
didDrawCell: (data) => {
if (data.section === 'body' && data.column.index === 2) {
doc.setTextColor(255, 0, 0)
}
},
})
Getting Started
-
Install jsPDF and jsPDF-AutoTable:
npm install jspdf jspdf-autotable
-
Import the libraries in your JavaScript file:
import jsPDF from 'jspdf' import autoTable from 'jspdf-autotable'
-
Create a new jsPDF instance and use autoTable to generate your table:
const doc = new jsPDF() autoTable(doc, { head: [['Name', 'Email', 'Country']], body: [ ['David', 'david@example.com', 'Sweden'], ['Castille', 'castille@example.com', 'Spain'], ], }) doc.save('table.pdf')
Competitor Comparisons
Client/server side PDF printing in pure JavaScript
Pros of pdfmake
- More comprehensive document creation capabilities, including headers, footers, and complex layouts
- Built-in support for various content types like images, tables, and lists
- Stronger typography control and text styling options
Cons of pdfmake
- Steeper learning curve due to its more complex API
- Larger file size and potentially slower performance for simple table-focused documents
- Less specialized for table generation compared to jsPDF-AutoTable
Code Comparison
pdfmake:
var docDefinition = {
content: [
{ text: 'Tables', style: 'header' },
{
table: {
body: [
['Column 1', 'Column 2', 'Column 3'],
['One value goes here', 'Another one here', 'OK?']
]
}
}
]
};
jsPDF-AutoTable:
var doc = new jsPDF();
doc.autoTable({
head: [['Name', 'Email', 'Country']],
body: [
['David', 'david@example.com', 'Sweden'],
['Castille', 'castille@example.com', 'Spain']
],
});
Both libraries offer PDF generation capabilities, but pdfmake provides a more comprehensive solution for complex document layouts, while jsPDF-AutoTable excels in simplicity and ease of use for table-focused documents.
📗 SheetJS Spreadsheet Data Toolkit -- New home https://git.sheetjs.com/SheetJS/sheetjs
Pros of sheetjs
- Supports a wide range of spreadsheet formats (XLS, XLSX, CSV, etc.)
- Offers both reading and writing capabilities for spreadsheets
- Provides extensive data manipulation and processing features
Cons of sheetjs
- Larger library size, which may impact load times and performance
- Steeper learning curve due to its comprehensive feature set
- May be overkill for simple table generation tasks
Code Comparison
sheetjs:
const XLSX = require('xlsx');
const workbook = XLSX.utils.book_new();
const worksheet = XLSX.utils.json_to_sheet(data);
XLSX.utils.book_append_sheet(workbook, worksheet, "Sheet1");
XLSX.writeFile(workbook, "output.xlsx");
jsPDF-AutoTable:
import jsPDF from 'jspdf';
import 'jspdf-autotable';
const doc = new jsPDF();
doc.autoTable({
head: [['Name', 'Email', 'Country']],
body: data
});
doc.save('table.pdf');
Summary
sheetjs is a powerful library for working with various spreadsheet formats, offering extensive data manipulation capabilities. It's ideal for complex spreadsheet tasks but may be excessive for simple table generation. jsPDF-AutoTable, on the other hand, is more focused on creating PDF tables, making it simpler to use for specific PDF output needs but less versatile for general spreadsheet operations.
Client-side JavaScript PDF generation for everyone.
Pros of jsPDF
- More comprehensive PDF generation capabilities, including support for various content types (text, images, shapes)
- Wider range of PDF manipulation features, such as encryption and document properties
- Larger community and more frequent updates
Cons of jsPDF
- Steeper learning curve due to more complex API
- Requires additional setup for table creation, which is not built-in
- Larger file size and potentially slower performance for simple use cases
Code Comparison
jsPDF (basic table creation):
var doc = new jsPDF();
doc.text("Table Example", 14, 15);
doc.line(14, 17, 196, 17);
doc.text("Column 1", 14, 25);
doc.text("Column 2", 80, 25);
doc.text("Column 3", 146, 25);
jsPDF-AutoTable (table creation):
var doc = new jsPDF();
doc.autoTable({
head: [['Column 1', 'Column 2', 'Column 3']],
body: [
['Data 1', 'Data 2', 'Data 3'],
['Data 4', 'Data 5', 'Data 6']
]
});
jsPDF-AutoTable provides a more straightforward and concise way to create tables, while jsPDF requires manual positioning and drawing of table elements. jsPDF offers more flexibility for complex layouts, but at the cost of increased code complexity.
A JavaScript PDF generation library for Node and the browser
Pros of pdfkit
- More comprehensive PDF creation capabilities, including advanced graphics and layouts
- Better performance for generating large, complex documents
- Supports both Node.js and browser environments
Cons of pdfkit
- Steeper learning curve due to more extensive API
- Requires more setup and configuration for basic table generation
- Larger package size, which may impact load times in browser environments
Code Comparison
pdfkit example:
const doc = new PDFDocument();
doc.pipe(fs.createWriteStream('output.pdf'));
doc.text('Hello, world!');
doc.table(tableData, tableOptions);
doc.end();
jsPDF-AutoTable example:
const doc = new jsPDF();
doc.autoTable({
head: [['Name', 'Email', 'Country']],
body: [
['David', 'david@example.com', 'Sweden'],
['Castille', 'castille@example.com', 'Spain']
]
});
doc.save('table.pdf');
While pdfkit offers more flexibility and features for complex PDF generation, jsPDF-AutoTable provides a simpler API specifically tailored for creating tables in PDF documents. The choice between the two depends on the project requirements, with pdfkit being more suitable for comprehensive PDF creation tasks and jsPDF-AutoTable excelling in straightforward table generation scenarios.
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
jsPDF-AutoTable - Table plugin for jsPDF
Generate PDF tables with Javascript
This jsPDF plugin adds the ability to generate PDF tables either by parsing HTML tables or by using Javascript data directly. Check out the demo or examples.
Installation
Get jsPDF and this plugin by doing one of these things:
npm install jspdf jspdf-autotable
- Download jspdf and jspdf-autotable from github
- Use a CDN, for example: https://unpkg.com/jspdf and https://unpkg.com/jspdf-autotable
Usage
import jsPDF from 'jspdf'
import autoTable from 'jspdf-autotable'
const doc = new jsPDF()
// It can parse html:
// <table id="my-table"><!-- ... --></table>
autoTable(doc, { html: '#my-table' })
// Or use javascript directly:
autoTable(doc, {
head: [['Name', 'Email', 'Country']],
body: [
['David', 'david@example.com', 'Sweden'],
['Castille', 'castille@example.com', 'Spain'],
// ...
],
})
// Sometimes you might have to call the default function on the export (for example in Deno)
autoTable.default(doc, { html: '#my-table' })
doc.save('table.pdf')
You can also use the plugin methods directly on the jsPDF documents:
import jsPDF from 'jspdf'
import 'jspdf-autotable'
const doc = new jsPDF()
doc.autoTable({ html: '#my-table' })
doc.save('table.pdf')
The third usage option is with downloaded or CDN dist files
<script src="jspdf.min.js"></script>
<script src="jspdf.plugin.autotable.min.js"></script>
<script>
var doc = new jsPDF()
doc.autoTable({ html: '#my-table' })
doc.save('table.pdf')
</script>
Checkout more examples in examples.js which is also the source code for the demo documents.
Options
Below is a list of all options supported in the plugin. All of them are used in the examples.
Content options
The only thing required is either the html or body option. If you want more control over the columns you can specify the columns property. If columns are not set they will be automatically computed based on the content of the html content or head, body and foot.
html: string|HTMLTableElement
A css selector (for example "#table") or an html table element.head: CellDef[][]
For example [['ID', 'Name', 'Country']]body: CellDef[][]
For example [['1', 'Simon', 'Sweden'], ['2', 'Karl', 'Norway']]foot: CellDef[][]
For example [['ID', 'Name', 'Country']]columns: ColumnDef[]
For example [{header: 'ID', dataKey: 'id'}, {header: 'Name', dataKey: 'name'}]. Only use this option if you want more control over the columns. If not specified the columns will be automatically generated based on the content in html or head/body/footincludeHiddenHtml: boolean = false
If hidden html withdisplay: none
should be included or not when the content comes from an html table
CellDef: string|{content: string, rowSpan: number, colSpan: number, styles: StyleDef}
Note that cell styles can also be set dynamically with hooks.
ColumnDef: string|{header?: string, dataKey: string}
The header property is optional and the values of any content in head
will be used if not set. Normally it's easier to use the html or head/body/foot style of initiating a table, but columns can be useful if your body content comes directly from an api or if you would like to specify a dataKey on each column to make it more readable to style specific columns in the hooks or columnStyles.
Usage with colspan, rowspan and inline cell styles:
autoTable(doc, {
body: [
[{ content: 'Text', colSpan: 2, rowSpan: 2, styles: { halign: 'center' } }],
],
})
Styling options
theme: 'striped'|'grid'|'plain' = 'striped'
styles: StyleDef
headStyles: StyleDef
bodyStyles: StyleDef
footStyles: StyleDef
alternateRowStyles: StyleDef
columnStyles: {&columnDataKey: StyleDef}
Note that the columnDataKey is normally the index of the column, but could also be thedataKey
of a column if content initialized with the columns property
StyleDef
:
font: 'helvetica'|'times'|'courier' = 'helvetica'
fontStyle: 'normal'|'bold'|'italic'|'bolditalic' = 'normal'
overflow: 'linebreak'|'ellipsize'|'visible'|'hidden' = 'linebreak'
fillColor: Color? = null
textColor: Color? = 20
cellWidth: 'auto'|'wrap'|number = 'auto'
minCellWidth: number? = 10
minCellHeight: number = 0
halign: 'left'|'center'|'right' = 'left'
valign: 'top'|'middle'|'bottom' = 'top'
fontSize: number = 10
cellPadding: Padding = 10
lineColor: Color = 10
lineWidth: border = 0
// If 0, no border is drawn
Color
:
Either false for transparent, hex string, gray level 0-255 or rbg array e.g. [255, 0, 0]
false|string|number|[number, number, number]
Padding
:
Either a number or object {top: number, right: number, bottom: number, left: number}
border
:
Either a number or object {top: number, right: number, bottom: number, left: number}
Styles work similar to css and can be overridden by more specific styles. Overriding order:
- Theme styles
styles
headStyles
,bodyStyles
andfootStyles
alternateRowStyles
columnStyles
Styles for specific cells can also be applied using either the hooks (see hooks section above) or the styles
property on the cell definition object (see content section above).
Example usage of column styles (note that the 0 in the columnStyles below should be dataKey if columns option used)
// Example usage with columnStyles,
autoTable(doc, {
styles: { fillColor: [255, 0, 0] },
columnStyles: { 0: { halign: 'center', fillColor: [0, 255, 0] } }, // Cells in first column centered and green
margin: { top: 10 },
body: [
['Sweden', 'Japan', 'Canada'],
['Norway', 'China', 'USA'],
['Denmark', 'China', 'Mexico'],
],
})
// Example usage of columns property. Note that America will not be included even though it exist in the body since there is no column specified for it.
autoTable(doc, {
columnStyles: { europe: { halign: 'center' } }, // European countries centered
body: [
{ europe: 'Sweden', america: 'Canada', asia: 'China' },
{ europe: 'Norway', america: 'Mexico', asia: 'Japan' },
],
columns: [
{ header: 'Europe', dataKey: 'europe' },
{ header: 'Asia', dataKey: 'asia' },
],
})
Other options
useCss: boolean = false
startY: number = null
Where the table should start to be printed (basically a margin top value only for the first page)margin: Margin = 40
pageBreak: 'auto'|'avoid'|'always'
If set toavoid
the plugin will only split a table onto multiple pages if table height is larger than page height.rowPageBreak: 'auto'|'avoid' = 'auto'
If set toavoid
the plugin will only split a row onto multiple pages if row height is larger than page height.tableWidth: 'auto'|'wrap'|number = 'auto'
showHead: 'everyPage'|'firstPage'|'never' = 'everyPage''
showFoot: 'everyPage'|'lastPage'|'never' = 'everyPage''
tableLineWidth: number = 0
tableLineColor: Color = 200
The table line/border colorhorizontalPageBreak: boolean = false
To split/break the table into multiple pages if the given table width exceeds the page widthhorizontalPageBreakRepeat: string|number|string[]|number[]
To repeat the given column in the split pages, works whenhorizontalPageBreak = true
. The accepted values are column dataKeys, such as'id'
,recordId
or column indexes, such as0
,1
or array for multiple columns.horizontalPageBreakBehaviour: 'immediately'|'afterAllRows' = 'afterAllRows'
How the horizontal page breaks behave, works whenhorizontalPageBreak = true
Margin
:
Either a number or object {top: number, right: number, bottom: number, left: number}
Hooks
You can customize the content and styling of the table by using the hooks. See the custom styles example for usage of the hooks.
didParseCell: (HookData) => {}
- Called when the plugin finished parsing cell content. Can be used to override content or styles for a specific cell.willDrawCell: (HookData) => {}
- Called before a cell or row is drawn. Can be used to call native jspdf styling functions such asdoc.setTextColor
or change position of text etc before it is drawn.didDrawCell: (HookData) => {}
- Called after a cell has been added to the page. Can be used to draw additional cell content such as images withdoc.addImage
, additional text withdoc.addText
or other jspdf shapes.willDrawPage: (HookData) => {}
- Called before starting to draw on a page. Can be used to add headers or any other content that you want on each page there is an autotable.didDrawPage: (HookData) => {}
- Called after the plugin has finished drawing everything on a page. Can be used to add footers with page numbers or any other content that you want on each page there is an autotable.
All hooks functions get passed an HookData object with information about the state of the table and cell. For example the position on the page, which page it is on etc.
HookData
:
table: Table
pageNumber: number
The page number specific to this tablesettings: object
Parsed user supplied optionsdoc
The jsPDF document instance of this tablecursor: { x: number, y: number }
To draw each table this plugin keeps a cursor state where the next cell/row should be drawn. You can assign new values to this cursor to dynamically change how the cells and rows are drawn.
For cell hooks these properties are also passed:
cell: Cell
row: Row
column: Column
section: 'head'|'body'|'foot'
To see what is included in the Table
, Row
, Column
and Cell
types, either log them to the console or take a look at src/models.ts
// Example with an image drawn in each cell in the first column
autoTable(doc, {
didDrawCell: (data) => {
if (data.section === 'body' && data.column.index === 0) {
var base64Img = 'data:image/jpeg;base64,iVBORw0KGgoAAAANS...'
doc.addImage(base64Img, 'JPEG', data.cell.x + 2, data.cell.y + 2, 10, 10)
}
},
})
API
doc.autoTable({ /* options */ })
autoTable(doc, { /* options */ })
jsPDF.autoTableSetDefaults({ /* ... */ })
Use for setting global defaults which will be applied for all tables
If you want to know something about the last table that was drawn you can use doc.lastAutoTable
. It has a doc.lastAutoTable.finalY
property among other things that has the value of the last printed y coordinate on a page. This can be used to draw text, multiple tables or other content after a table.
In addition to the exported autoTable(doc, options) method you can also use applyPlugin to add the autoTable api to any jsPDF instance.
import jsPDF from 'jspdf/dist/jspdf.node.debug'
import { applyPlugin } from 'jspdf-autotable'
applyPlugin(jsPDF)
Contributions
Contributions are always welcome, especially on open issues. If you have something major you want to add or change, please post an issue about it first to discuss it further. The workflow for contributing would be something like this:
- Start watcher with
npm start
- Make code changes
- Make sure all examples works
- Commit and submit pull request
If you don't use Prettier on autosave, please run yarn run format-all
before opening your PR
Release workflow
- Run Release workflow on github (or run
npm version <semver>
and npm run deploy) - Verify release at https://simonbengtsson.github.io/jsPDF-AutoTable
Pull requests locally
PR=472 npm run checkout-pr
Release prerelease
npm version prerelease
git push && git push --tags && npm publish --tag alpha
Top Related Projects
Convert designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot