New to Kendo UI for Angular? Start a free 30-day trial
ExportEvent
Represents the arguments for the export
event in the Chart Wizard.
Use this event to customize the export process or prevent it.
typescript
exportEventHandler(event: ExportEvent): void {
if (event.exportOptions.fileName === 'restricted') {
event.preventDefault();
}
}
Name | Type | Default | Description |
---|---|---|---|
chart |
|
Provides the current | |
exportOptions |
|
Defines the export options for the Chart Wizard. |
Methods
isDefaultPrevented | ||||
---|---|---|---|---|
Returns | ||||
|
preventDefault |
---|
Prevents the default action for a specified event. In this way, the source component suppresses the built-in behavior that follows the event. |