UNPKG

@progress/kendo-angular-chart-wizard

Version:

Kendo UI Angular Chart Wizard component

36 lines (35 loc) 1.24 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ChartComponent } from '@progress/kendo-angular-charts'; import { PreventableEvent } from './preventable-event'; import { ExportOptions } from '../common/models'; /** * Represents the arguments for the `export` event in the Chart Wizard. * * Use this event to customize the export process or prevent it. * * @example * ```typescript * exportEventHandler(event: ExportEvent): void { * if (event.exportOptions.fileName === 'restricted') { * event.preventDefault(); * } * } * ``` */ export declare class ExportEvent extends PreventableEvent { /** * Defines the export options for the Chart Wizard. */ exportOptions: ExportOptions; /** * Provides the current `ChartComponent` instance to export. */ chart: ChartComponent; /** * @hidden */ constructor(chart: ChartComponent, exportOptions: ExportOptions); }