Example of Export to Excel in Blazor Scheduler Component
This example demonstrates how to export the Scheduler events to an Excel file format.
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
In this example, the Scheduler events data are exported to an Excel file by using the public method
ExportToExcelAsync. By default, the whole event collection bound to the Scheduler gets exported as an excel file. To
export only specific events of Scheduler, you need to pass the custom data collection as a parameter to the
ExportToExcelAsync
method. This method accepts the export options as its arguments such as FileName, ExportType,
Fields, CustomData, and IncludeOccurrences. The FileName denotes the name to be given for the exported file and
the ExportType allows you to set the format of the excel file to be exported either as .xlsx or .csv. The custom
or specific field collection of event dataSource to be exported can be provided through FieldsInfo
option and the
custom data collection can be exported by passing them through the CustomData
option. There also exists option
to export individual instances of the recurring events to an excel file, by setting true or false to the
IncludeOccurrences
option, denoting either to include or exclude the occurrences as separate instances on an
exported excel file.