png()
Exports a chart 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/chart/png/8.0.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 Chart. 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
chart.export.png();
// export with config settings
chart.export.png({
url: "https://export.dhtmlx.com/chart/png/8.0.0",
name: "result.png"
});
Related samples: Chart. Export. Export to PDF/PNG
Related API: exportStyles
Change log:
- The header and footer options of the export object were added in 8.4
- The theme and exportStyles options of the export object were added in 8.1
- Added in v8.0