UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

85 lines (84 loc) 2.62 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let WebPivotConfigurationDescription = /*@__PURE__*/ (() => { class WebPivotConfigurationDescription extends Description { constructor() { super(); this.t = null; this.s = null; this.m = null; this.k = null; this.n = null; this.l = null; this.w = null; } get_type() { return "WebPivotConfiguration"; } get type() { return this.get_type(); } get rowStrategy() { return this.t; } set rowStrategy(a) { this.t = a; this.j("RowStrategy"); } get columnStrategy() { return this.s; } set columnStrategy(a) { this.s = a; this.j("ColumnStrategy"); } get rows() { return this.m; } set rows(a) { this.m = a; this.j("Rows"); } get columns() { return this.k; } set columns(a) { this.k = a; this.j("Columns"); } get values() { return this.n; } set values(a) { this.n = a; this.j("Values"); } get filters() { return this.l; } set filters(a) { this.l = a; this.j("Filters"); } get pivotKeys() { return this.w; } set pivotKeys(a) { this.w = a; this.j("PivotKeys"); } } WebPivotConfigurationDescription.$t = markType(WebPivotConfigurationDescription, 'WebPivotConfigurationDescription', Description.$); WebPivotConfigurationDescription.__marshalByValue = true; WebPivotConfigurationDescription.__marshalByValueAlias = "PivotConfiguration"; return WebPivotConfigurationDescription; })();