UNPKG

devexpress-reporting

Version:

DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.

28 lines (27 loc) 1.36 kB
/** * DevExpress HTML/JS Reporting (designer\wizard\pages\configureReportPageSettingsAndColorSchemeSection.d.ts) * Version: 20.2.13 * Build date: Apr 10, 2023 * Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { ConfigureReportPageSettingsPage } from './configureReportPageSettingsPage'; import { ChooseReportColorSchemePage } from './colorSchemePage'; import { IReportWizardState } from '../reportWizardState'; import { WizardPageBase, PageFactory } from '@devexpress/analytics-core/analytics-wizard'; export declare class ConfigurePageSettingsPage extends WizardPageBase { _configureReportPageSettingsPage: ConfigureReportPageSettingsPage; _colorSchemePage: ChooseReportColorSchemePage; _colorSchemePageVisible: boolean; dispose(): void; addColorScheme(name: string, color: string, position?: number): void; removeColorScheme(...names: string[]): void; removeAllColorSchemes(): void; setCustomColor(color: string): void; onChange(callback: any): void; canNext(): boolean; canFinish(): boolean; initialize(state: IReportWizardState): JQuery.Promise<any, any, never>; commit(): JQuery.Promise<any, any, any>; } export declare function _registerConfigureReportPageSettingsSection(factory: PageFactory): void;