@progress/kendo-angular-chart-wizard
Version:
Kendo UI Angular Chart Wizard component
59 lines (58 loc) • 1.5 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ImageExportOptions } from "@progress/kendo-drawing";
import { PDFOptions } from "@progress/kendo-drawing/pdf";
/**
* Represents the export options for the Chart Wizard.
*
* Use this interface to configure file name, PDF, and image export settings.
*
* @example
* ```typescript
* const options: ExportOptions = {
* fileName: 'chart-export',
* pdf: { paperSize: 'A4' },
* image: { width: 800, height: 600 }
* };
* ```
*/
export interface ExportOptions {
/**
* Sets the name of the exported file.
*/
fileName?: string;
/**
* Configures the PDF export options.
*/
pdf?: PDFOptions;
/**
* Configures the image export options.
*/
image?: ImageExportOptions;
}
/**
* @hidden
*/
export type PanelType = 'Chart Area' | 'Legend' | 'Title' | 'Subtitle' | 'Value Axis' | 'Category Axis' | 'Series';
/**
* @hidden
*/
export declare const defaultAllSeriesItem: {
name: string;
};
/**
* @hidden
*/
export declare const defaultFormat: {
value: string;
text: string;
};
/**
* @hidden
*/
export declare const labelFormats: {
value: string;
text: string;
}[];