png()
Exports data from a grid to a PNG file
png(config?: object): void;
Parameters:
config
- (optional) an object with export settings. You can specify the following settings for export to PNG: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/png/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 Grid. Use false to prevent all styles from being sent to the export serviceheader?: 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
grid.export.png();
// export with config settings
grid.export.png({
theme: "dark",
});
info
If you use Grid in conjunction with Pagination, only the displayed page will be exported.
Related sample: Grid. Export to PDF/PNG
Related article: Exporting Grid
Related API: exportStyles
Change log:
- The header and footer options of the export object were added in 8.4
- Added in v8.1