UNPKG

igniteui-react-core

Version:
119 lines (118 loc) 3.93 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.q = null; _this.p = null; _this.j = null; _this.h = null; _this.k = null; _this.i = null; _this.t = 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.q; }, set: function (a) { this.q = a; this.g("RowStrategy"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotConfigurationDescription.prototype, "columnStrategy", { get: function () { return this.p; }, set: function (a) { this.p = a; this.g("ColumnStrategy"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotConfigurationDescription.prototype, "rows", { get: function () { return this.j; }, set: function (a) { this.j = a; this.g("Rows"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotConfigurationDescription.prototype, "columns", { get: function () { return this.h; }, set: function (a) { this.h = a; this.g("Columns"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotConfigurationDescription.prototype, "values", { get: function () { return this.k; }, set: function (a) { this.k = a; this.g("Values"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotConfigurationDescription.prototype, "filters", { get: function () { return this.i; }, set: function (a) { this.i = a; this.g("Filters"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotConfigurationDescription.prototype, "pivotKeys", { get: function () { return this.t; }, set: function (a) { this.t = a; this.g("PivotKeys"); }, enumerable: false, configurable: true }); WebPivotConfigurationDescription.$t = markType(WebPivotConfigurationDescription, 'WebPivotConfigurationDescription', Description.$); WebPivotConfigurationDescription.__marshalByValue = true; WebPivotConfigurationDescription.__marshalByValueAlias = "PivotConfiguration"; return WebPivotConfigurationDescription; }(Description)); export { WebPivotConfigurationDescription };