UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

119 lines (118 loc) 4.05 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 { __extends } from "tslib"; import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var WebPivotConfigurationDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebPivotConfigurationDescription, _super); function WebPivotConfigurationDescription() { var _this = _super.call(this) || this; _this.t = null; _this.s = null; _this.m = null; _this.k = null; _this.n = null; _this.l = null; _this.w = null; return _this; } WebPivotConfigurationDescription.prototype.get_type = function () { return "WebPivotConfiguration"; }; Object.defineProperty(WebPivotConfigurationDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotConfigurationDescription.prototype, "rowStrategy", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("RowStrategy"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotConfigurationDescription.prototype, "columnStrategy", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("ColumnStrategy"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotConfigurationDescription.prototype, "rows", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("Rows"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotConfigurationDescription.prototype, "columns", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("Columns"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotConfigurationDescription.prototype, "values", { get: function () { return this.n; }, set: function (a) { this.n = a; this.j("Values"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotConfigurationDescription.prototype, "filters", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("Filters"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotConfigurationDescription.prototype, "pivotKeys", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("PivotKeys"); }, enumerable: false, configurable: true }); WebPivotConfigurationDescription.$t = markType(WebPivotConfigurationDescription, 'WebPivotConfigurationDescription', Description.$); WebPivotConfigurationDescription.__marshalByValue = true; WebPivotConfigurationDescription.__marshalByValueAlias = "PivotConfiguration"; return WebPivotConfigurationDescription; }(Description)); export { WebPivotConfigurationDescription };