/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { NgZone, SimpleChanges } from '@angular/core'; import { PivotGridDataService } from './pivotgrid-data.service'; import { PivotBaseBindingDirective } from './base-binding-directive'; import { PivotGridState } from '../models/configurator-settings'; import * as i0 from "@angular/core"; /** * Represents a directive that binds the PivotGrid to data using an Online Analytical Processing (OLAP) service ([see example](https://www.telerik.com/kendo-angular-ui/components/pivotgrid/data-binding/olap-directive)). * * @example * ```html * * * ``` * * @remarks * Applied to: {@link PivotGridComponent} */ export declare class PivotOLAPBindingDirective extends PivotBaseBindingDirective { /** * Defines the OLAP service endpoint where the data is processed and retrieved to render the pivot table. */ url: string; /** * Sets the cube name that is used to retrieve data for the pivot table rendering. */ cube: string; /** * Sets the database name that is used to retrieve the data from the specified connection string. */ catalog: string; type: 'local' | 'olap'; constructor(dataService: PivotGridDataService, zone: NgZone); ngOnChanges(changes: SimpleChanges): void; protected loadData(state: PivotGridState): void; protected loadFields(): void; protected updateFields(event: any, fields: any): Promise; /** * @hidden */ fetchChildren(event: any, fields: any): Promise; private normalizeKPIs; private getField; private loadKPIs; private loadAvailableFields; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }