igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
93 lines (92 loc) • 3.2 kB
JavaScript
/*
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 WebPivotGridRecordDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebPivotGridRecordDescription, _super);
function WebPivotGridRecordDescription() {
var _this = _super.call(this) || this;
_this.n = null;
_this.k = 0;
_this.h = null;
_this.o = null;
_this.j = 0;
return _this;
}
WebPivotGridRecordDescription.prototype.get_type = function () {
return "WebPivotGridRecord";
};
Object.defineProperty(WebPivotGridRecordDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridRecordDescription.prototype, "recordsRef", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("RecordsRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridRecordDescription.prototype, "level", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.g("Level");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridRecordDescription.prototype, "dimensions", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.g("Dimensions");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridRecordDescription.prototype, "totalRecordDimensionName", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.g("TotalRecordDimensionName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridRecordDescription.prototype, "dataIndex", {
get: function () {
return this.j;
},
set: function (a) {
this.j = a;
this.g("DataIndex");
},
enumerable: false,
configurable: true
});
WebPivotGridRecordDescription.$t = markType(WebPivotGridRecordDescription, 'WebPivotGridRecordDescription', Description.$);
return WebPivotGridRecordDescription;
}(Description));
export { WebPivotGridRecordDescription };