devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
37 lines (36 loc) • 1.7 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\wizard\pages\fullscreen\specifyPageSettingsPage.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" />
import { FullscreenWizardPage, FullscreenWizardPageFactory, PageFactory, WizardPageBase } from '@devexpress/analytics-core/analytics-wizard';
import * as ko from 'knockout';
import { _ReportWizardOptions } from '../../internal/utils';
import { PreviewPageHelper } from '../configureReportPageSettingsPage';
export declare class SpecifyPageSettingsPage extends FullscreenWizardPage {
private _reportWizardOptions;
constructor(_reportWizardOptions: _ReportWizardOptions);
canNext(): boolean;
canFinish(): boolean;
registerSections(): void;
getNextSectionId(sectionId: any): string;
}
export declare function _registerSpecifyPageSettingsPage(factory: FullscreenWizardPageFactory, reportWizardOptions: _ReportWizardOptions): void;
export declare class SpecifyReportTitlePage extends WizardPageBase {
constructor();
private _getBrightness;
private _fillTables;
initialize(state: any): JQuery.Promise<any, any, any>;
commit(): JQuery.Promise<any, any, any>;
_reportTitlePlaceholder(): any;
_foreColor: ko.Observable<string>;
_masterDetailInfo: ko.ObservableArray<any>;
reportTitle: ko.Observable<string> | ko.Computed<string>;
_reportTitleVisible: boolean;
_color: ko.Observable<string>;
_previewPageHelper: PreviewPageHelper;
}
export declare function _registerSpecifyReportTitlePage(factory: PageFactory): void;