New to Kendo UI for Angular? Start a free 30-day trial
Angular Chart Wizard Export Options
To export the charts of the Chart Wizard component to PDF, PNG, or SVG formats, set the exportOptions
property to an ExportOptions
object.
You can further configure the exported file type by setting the image
property to an ImageExportOptions
object and the pdf
property to a PDFOptions
object.
ts
public exportOptions: ExportOptions = {
fileName: "report",
pdf: {
paperSize: "A4",
},
image: {
width: 1900,
height: 1200,
},
};
The following example demonstrates how to customize the export options of the component.
Change Theme
Theme
Loading ...