devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
30 lines (29 loc) • 1.41 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\wizard\pages\configureReportPageSettingsAndColorSchemeSection.d.ts)
* Version: 24.2.6
* Build date: Mar 18, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
/// <reference types="jquery" />
/// <reference types="jquery" />
import { PageFactory, WizardPageBase } from '@devexpress/analytics-core/analytics-wizard';
import { IReportWizardState } from '../reportWizardState';
import { ChooseReportColorSchemePage } from './colorSchemePage';
import { ConfigureReportPageSettingsPage } from './configureReportPageSettingsPage';
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): JQueryPromise<any>;
commit(): JQuery.Promise<any, any, any>;
}
export declare function _registerConfigureReportPageSettingsSection(factory: PageFactory): void;