/*! * * Wijmo Library 5.20251.34 * https://developer.mescius.com/wijmo * * Copyright(c) MESCIUS inc. All rights reserved. * * Licensed under the End-User License Agreement For MESCIUS Wijmo Software. * us.sales@mescius.com * https://developer.mescius.com/wijmo/licensing * */ /** * {@module wijmo.angular2.olap} * Contains Angular 2 components for the wijmo.olap module. * * wijmo.angular2.olap is an external TypeScript module that can be imported to your code * using its ambient module name. For example: * *
import * as wjOlap from 'wijmo/wijmo.angular2.olap';
*  
* @Component({
*     directives: [wjOlap.WjPivotGrid],
*     template: '<wj-pivot-grid [itemsSource]="data"></wj-pivot-grid>',
*     selector: 'my-cmp',
* })
* export class MyCmp {
*     data: any[];
* }
* */ /** * */ import * as ɵngcc0 from '@angular/core'; import * as ɵngcc1 from '@angular/common'; export declare var ___keepComment: any; import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core'; import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2.directivebase'; import * as wjcOlap from '@grapecity/wijmo.olap'; declare var wjPivotGridMeta: IWjComponentMeta; export { wjPivotGridMeta }; /** * Angular 2 component for the {@link wijmo.olap.PivotGrid} control. * * Use the wj-pivot-grid component to add PivotGrid controls to your * Angular 2 applications. For details about Angular 2 markup syntax, see * Angular 2 Markup. * * The WjPivotGrid component is derived from the PivotGrid control and * inherits all its properties, events and methods. */ export declare class WjPivotGrid extends wjcOlap.PivotGrid implements OnInit, OnDestroy, AfterViewInit { static readonly meta: IWjComponentMetadata; private _wjBehaviour; /** * Indicates whether the component has been initialized by Angular. * Changes its value from false to true right before triggering the initialized event. */ isInitialized: boolean; /** * This event is triggered after the component has been initialized by Angular, that is * all bound properties have been assigned and child components (if any) have been initialized. */ initialized: EventEmitter; /** * Defines a name of a property represented by [(ngModel)] directive (if specified). * Default value is ''. */ wjModelProperty: string; /** * Angular (EventEmitter) version of the Wijmo gotFocus event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional gotFocus Wijmo event name. */ gotFocusNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo lostFocus event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional lostFocus Wijmo event name. */ lostFocusNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo refreshing event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional refreshing Wijmo event name. */ refreshingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo refreshed event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional refreshed Wijmo event name. */ refreshedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo invalidInput event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional invalidInput Wijmo event name. */ invalidInputNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo beginningEdit event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional beginningEdit Wijmo event name. */ beginningEditNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo cellEditEnded event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional cellEditEnded Wijmo event name. */ cellEditEndedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo cellEditEnding event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional cellEditEnding Wijmo event name. */ cellEditEndingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo prepareCellForEdit event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional prepareCellForEdit Wijmo event name. */ prepareCellForEditNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo formatItem event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional formatItem Wijmo event name. */ formatItemNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo resizingColumn event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional resizingColumn Wijmo event name. */ resizingColumnNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo resizedColumn event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional resizedColumn Wijmo event name. */ resizedColumnNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo autoSizingColumn event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional autoSizingColumn Wijmo event name. */ autoSizingColumnNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo autoSizedColumn event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional autoSizedColumn Wijmo event name. */ autoSizedColumnNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo draggingColumn event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional draggingColumn Wijmo event name. */ draggingColumnNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo draggingColumnOver event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional draggingColumnOver Wijmo event name. */ draggingColumnOverNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo draggedColumn event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional draggedColumn Wijmo event name. */ draggedColumnNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo sortingColumn event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional sortingColumn Wijmo event name. */ sortingColumnNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo sortedColumn event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional sortedColumn Wijmo event name. */ sortedColumnNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo pinningColumn event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional pinningColumn Wijmo event name. */ pinningColumnNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo pinnedColumn event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional pinnedColumn Wijmo event name. */ pinnedColumnNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo resizingRow event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional resizingRow Wijmo event name. */ resizingRowNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo resizedRow event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional resizedRow Wijmo event name. */ resizedRowNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo autoSizingRow event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional autoSizingRow Wijmo event name. */ autoSizingRowNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo autoSizedRow event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional autoSizedRow Wijmo event name. */ autoSizedRowNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo draggingRow event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional draggingRow Wijmo event name. */ draggingRowNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo draggingRowOver event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional draggingRowOver Wijmo event name. */ draggingRowOverNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo draggedRow event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional draggedRow Wijmo event name. */ draggedRowNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo deletingRow event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional deletingRow Wijmo event name. */ deletingRowNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo deletedRow event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional deletedRow Wijmo event name. */ deletedRowNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo loadingRows event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional loadingRows Wijmo event name. */ loadingRowsNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo loadedRows event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional loadedRows Wijmo event name. */ loadedRowsNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo rowEditStarting event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rowEditStarting Wijmo event name. */ rowEditStartingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo rowEditStarted event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rowEditStarted Wijmo event name. */ rowEditStartedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo rowEditEnding event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rowEditEnding Wijmo event name. */ rowEditEndingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo rowEditEnded event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rowEditEnded Wijmo event name. */ rowEditEndedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo rowAdded event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rowAdded Wijmo event name. */ rowAddedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo groupCollapsedChanging event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional groupCollapsedChanging Wijmo event name. */ groupCollapsedChangingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo groupCollapsedChanged event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional groupCollapsedChanged Wijmo event name. */ groupCollapsedChangedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo columnGroupCollapsedChanging event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional columnGroupCollapsedChanging Wijmo event name. */ columnGroupCollapsedChangingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo columnGroupCollapsedChanged event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional columnGroupCollapsedChanged Wijmo event name. */ columnGroupCollapsedChangedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo itemsSourceChanging event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional itemsSourceChanging Wijmo event name. */ itemsSourceChangingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo itemsSourceChanged event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional itemsSourceChanged Wijmo event name. */ itemsSourceChangedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo selectionChanging event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional selectionChanging Wijmo event name. */ selectionChangingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo selectionChanged event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional selectionChanged Wijmo event name. */ selectionChangedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo scrollPositionChanged event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional scrollPositionChanged Wijmo event name. */ scrollPositionChangedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo updatingView event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional updatingView Wijmo event name. */ updatingViewNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo updatedView event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional updatedView Wijmo event name. */ updatedViewNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo updatingLayout event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional updatingLayout Wijmo event name. */ updatingLayoutNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo updatedLayout event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional updatedLayout Wijmo event name. */ updatedLayoutNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo pasting event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional pasting Wijmo event name. */ pastingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo pasted event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional pasted Wijmo event name. */ pastedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo pastingCell event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional pastingCell Wijmo event name. */ pastingCellNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo pastedCell event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional pastedCell Wijmo event name. */ pastedCellNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo copying event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional copying Wijmo event name. */ copyingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo copied event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional copied Wijmo event name. */ copiedNg: EventEmitter; constructor(elRef: ElementRef, injector: Injector, parentCmp: any); /** * If you create a custom component inherited from a Wijmo component, you can override this * method and perform necessary initializations that you usually do in a class constructor. * This method is called in the last line of a Wijmo component constructor and allows you * to not declare your custom component's constructor at all, thus preventing you from a necessity * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters. */ created(): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void; static ɵfac: ɵngcc0.ɵɵFactoryDeclaration; static ɵcmp: ɵngcc0.ɵɵComponentDeclaration; } declare var wjPivotChartMeta: IWjComponentMeta; export { wjPivotChartMeta }; /** * Angular 2 component for the {@link wijmo.olap.PivotChart} control. * * Use the wj-pivot-chart component to add PivotChart controls to your * Angular 2 applications. For details about Angular 2 markup syntax, see * Angular 2 Markup. * * The WjPivotChart component is derived from the PivotChart control and * inherits all its properties, events and methods. */ export declare class WjPivotChart extends wjcOlap.PivotChart implements OnInit, OnDestroy, AfterViewInit { static readonly meta: IWjComponentMetadata; private _wjBehaviour; /** * Indicates whether the component has been initialized by Angular. * Changes its value from false to true right before triggering the initialized event. */ isInitialized: boolean; /** * This event is triggered after the component has been initialized by Angular, that is * all bound properties have been assigned and child components (if any) have been initialized. */ initialized: EventEmitter; /** * Defines a name of a property represented by [(ngModel)] directive (if specified). * Default value is ''. */ wjModelProperty: string; /** * Angular (EventEmitter) version of the Wijmo gotFocus event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional gotFocus Wijmo event name. */ gotFocusNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo lostFocus event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional lostFocus Wijmo event name. */ lostFocusNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo refreshing event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional refreshing Wijmo event name. */ refreshingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo refreshed event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional refreshed Wijmo event name. */ refreshedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo invalidInput event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional invalidInput Wijmo event name. */ invalidInputNg: EventEmitter; constructor(elRef: ElementRef, injector: Injector, parentCmp: any); /** * If you create a custom component inherited from a Wijmo component, you can override this * method and perform necessary initializations that you usually do in a class constructor. * This method is called in the last line of a Wijmo component constructor and allows you * to not declare your custom component's constructor at all, thus preventing you from a necessity * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters. */ created(): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void; static ɵfac: ɵngcc0.ɵɵFactoryDeclaration; static ɵcmp: ɵngcc0.ɵɵComponentDeclaration; } declare var wjPivotPanelMeta: IWjComponentMeta; export { wjPivotPanelMeta }; /** * Angular 2 component for the {@link wijmo.olap.PivotPanel} control. * * Use the wj-pivot-panel component to add PivotPanel controls to your * Angular 2 applications. For details about Angular 2 markup syntax, see * Angular 2 Markup. * * The WjPivotPanel component is derived from the PivotPanel control and * inherits all its properties, events and methods. */ export declare class WjPivotPanel extends wjcOlap.PivotPanel implements OnInit, OnDestroy, AfterViewInit { static readonly meta: IWjComponentMetadata; private _wjBehaviour; /** * Indicates whether the component has been initialized by Angular. * Changes its value from false to true right before triggering the initialized event. */ isInitialized: boolean; /** * This event is triggered after the component has been initialized by Angular, that is * all bound properties have been assigned and child components (if any) have been initialized. */ initialized: EventEmitter; /** * Defines a name of a property represented by [(ngModel)] directive (if specified). * Default value is ''. */ wjModelProperty: string; /** * Angular (EventEmitter) version of the Wijmo gotFocus event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional gotFocus Wijmo event name. */ gotFocusNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo lostFocus event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional lostFocus Wijmo event name. */ lostFocusNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo refreshing event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional refreshing Wijmo event name. */ refreshingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo refreshed event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional refreshed Wijmo event name. */ refreshedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo invalidInput event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional invalidInput Wijmo event name. */ invalidInputNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo itemsSourceChanged event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional itemsSourceChanged Wijmo event name. */ itemsSourceChangedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo viewDefinitionChanged event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional viewDefinitionChanged Wijmo event name. */ viewDefinitionChangedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo updatingView event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional updatingView Wijmo event name. */ updatingViewNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo updatedView event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional updatedView Wijmo event name. */ updatedViewNg: EventEmitter; constructor(elRef: ElementRef, injector: Injector, parentCmp: any); /** * If you create a custom component inherited from a Wijmo component, you can override this * method and perform necessary initializations that you usually do in a class constructor. * This method is called in the last line of a Wijmo component constructor and allows you * to not declare your custom component's constructor at all, thus preventing you from a necessity * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters. */ created(): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void; static ɵfac: ɵngcc0.ɵɵFactoryDeclaration; static ɵcmp: ɵngcc0.ɵɵComponentDeclaration; } declare var wjSlicerMeta: IWjComponentMeta; export { wjSlicerMeta }; /** * Angular 2 component for the {@link wijmo.olap.Slicer} control. * * Use the wj-slicer component to add Slicer controls to your * Angular 2 applications. For details about Angular 2 markup syntax, see * Angular 2 Markup. * * The WjSlicer component is derived from the Slicer control and * inherits all its properties, events and methods. */ export declare class WjSlicer extends wjcOlap.Slicer implements OnInit, OnDestroy, AfterViewInit { static readonly meta: IWjComponentMetadata; private _wjBehaviour; /** * Indicates whether the component has been initialized by Angular. * Changes its value from false to true right before triggering the initialized event. */ isInitialized: boolean; /** * This event is triggered after the component has been initialized by Angular, that is * all bound properties have been assigned and child components (if any) have been initialized. */ initialized: EventEmitter; /** * Defines a name of a property represented by [(ngModel)] directive (if specified). * Default value is ''. */ wjModelProperty: string; /** * Angular (EventEmitter) version of the Wijmo gotFocus event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional gotFocus Wijmo event name. */ gotFocusNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo lostFocus event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional lostFocus Wijmo event name. */ lostFocusNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo refreshing event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional refreshing Wijmo event name. */ refreshingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo refreshed event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional refreshed Wijmo event name. */ refreshedNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo invalidInput event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional invalidInput Wijmo event name. */ invalidInputNg: EventEmitter; constructor(elRef: ElementRef, injector: Injector, parentCmp: any); /** * If you create a custom component inherited from a Wijmo component, you can override this * method and perform necessary initializations that you usually do in a class constructor. * This method is called in the last line of a Wijmo component constructor and allows you * to not declare your custom component's constructor at all, thus preventing you from a necessity * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters. */ created(): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void; static ɵfac: ɵngcc0.ɵɵFactoryDeclaration; static ɵcmp: ɵngcc0.ɵɵComponentDeclaration; } export declare class WjOlapModule { static ɵfac: ɵngcc0.ɵɵFactoryDeclaration; static ɵmod: ɵngcc0.ɵɵNgModuleDeclaration; static ɵinj: ɵngcc0.ɵɵInjectorDeclaration; }