• What is KendoReact
  • Getting Started
  • Server Components
  • Components
    • Animation
    • Barcodes
    • Buttons
    • Chart Wizardnew
    • Chartsupdated
    • Common Utilities
    • Conversational UIupdated
    • Data Gridupdated
    • Data Query
    • Data Toolsupdated
    • Date Inputs
    • Date Math
    • Dialogsupdated
    • Drawing
    • Dropdowns
    • Editor
    • Excel Export
    • File Saver
    • Form
    • Gantt
    • Gauges
    • Indicators
    • Inputsupdated
    • Labels
    • Layoutupdated
    • ListBoxupdated
    • ListView
    • Map
    • Notification
    • OrgChart
    • PDF Processing
    • PDF Viewer
    • PivotGrid
    • Popup
    • Progress Bars
    • Ripple
    • Schedulerupdated
    • ScrollView
    • Sortable
    • Spreadsheet
    • TaskBoard
    • Tooltips
    • TreeList
    • TreeViewupdated
    • Upload
  • Sample Applications
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Changelog
  • Updates
  • Troubleshooting

Export Options

The Chart Wizard allows the user to save the charts in PDF, PNG and SVG formats by setting the exportOptions property to an ExportOptions object.

const exportOptions: ExportOptions = {
fileName: 'report',
pdf: {
    paperSize: 'Letter',
},
image: {
    width: 1900, // px
    height: 1200,
},
};

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.

The following example demonstrates how to customize the export options of the component by configuring options like fileName, pdf.paperSize and image dimensions inside the exportOptions of the component.

Example
View Source
Change Theme:

In this article

Not finding the help you need?