pdf()
Exports data from a treegrid to a PDF file
pdf(config?: object): void;
Parameters:
config
- (optional) an object with export settings. You can specify the following settings for export to PDF:url?: string
- (optional) the url of the service that executes export and returns an exported file. This setting is optional, you should use it only if you need to specify the path to your local export service. The default value ishttps://export.dhtmlx.com/grid/pdf/8.1.0
name?: string
- (optional) the name of the exported filetheme?: string
- (optional) the exported theme, "light" by default. For custom or overridden themes, enable theexportStyles
optionexportStyles?: boolean | string[]
- (optional) defines the styles that will be sent to the export service when exporting TreeGrid. Use false to prevent all styles from being sent to the export servicepdf?: object
- (optional) the options object. It can have the following properties:scale?: number
- (optional) the scale of the grid rendering (between 0.1 and 2)landscape?: boolean
- (optional) the portrait or landscape orientation of the output file, false by defaultwidth?: string | number
- (optional) the width of the output page. As a value of the property, you can specify a number or a string with a unitheight?: string | number
- (optional) the height of the output page. As a value of the property, you can specify a number or a string with a unitmargin?: object
- (optional) margins of the output page:left?: string | number
- (optional) left margin, accepts values labeled with units (px,in,cm,mm)right?: string | number
- (optional) right margin, accepts values labeled with units (px,in,cm,mm)top?: string | number
- (optional) top margin, accepts values labeled with units (px,in,cm,mm)bottom?: string | number
- (optional) bottom margin, accepts values labeled with units (px,in,cm,mm)
format?: string | boolean
- (optional) the format of the output file. If set, it takes priority over the width or height options. "A4" by default. Setting the format tofalse
resets the default format and outputs data on one page. Check the list of all available formats and their sizes.pageRanges?: string
- (optional) paper ranges to print, e.g. 1-5, 8, 11-13;displayHeaderFooter?: boolean
- (optional) defines whether to display the header and footer, false by defaultfooterTemplate?: string
- (optional) an HTML template for the print footer. It should be valid HTML markup with following classes used to inject printing values into them:date
- (optional) formatted print datetitle
- (optional) document namepageNumber
- (optional) current page number. It is used by defaulttotalPages
- (optional) total pages in the document. It is used by default
headerTemplate?: string
- (optional) an HTML template for the print header. It should be valid HTML markup with following classes used to inject printing values into them:date
- (optional) formatted print datetitle
- (optional) document namepageNumber
- (optional) current page numbertotalPages
- (optional) total pages in the document
header?: string
- (optional) an HTML template for the header in the exported filefooter?: string
- (optional) an HTML template for the footer in the exported file
Example
// default export
treegrid.export.pdf();
// export with config settings
treegrid.export.pdf({
format: "A4",
scale: 0.85,
displayHeaderFooter: true,
theme: "dark",
});
info
It is necessary to set sufficient margin for correct display of headerTemplate
/footerTemplate
.
info
If you use TreeGrid in conjunction with Pagination, only the displayed page will be exported.
List of formats
Format | Size |
---|---|
"Letter" | (8.5in x 11in) |
"Legal" | (8.5in x 14in) |
"Tabloid" | (11in x 17in) |
"Ledger" | (17in x 11in) |
"A0" | (33.1in x 46.8in) |
"A1" | (23.4in x 33.1in) |
"A2" | (16.54in x 23.4in) |
"A3" | (11.7in x 16.54in) |
"A4"(by default) | (8.27in x 11.7in) |
"A5" | (5.83in x 8.27in) |
"A6" | (4.13in x 5.83in) |
false | Paper format |
Related samples: TreeGrid. Export to PDF/PNG
Related article: Exporting TreeGrid
Related API: exportStyles
Change log:
- The header and footer options of the export object were added in v8.4
- Added in v8.1