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.q = null;
_this.n = 0;
_this.k = null;
_this.r = null;
_this.m = 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.q;
},
set: function (a) {
this.q = a;
this.j("RecordsRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridRecordDescription.prototype, "level", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("Level");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridRecordDescription.prototype, "dimensions", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("Dimensions");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridRecordDescription.prototype, "totalRecordDimensionName", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("TotalRecordDimensionName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridRecordDescription.prototype, "dataIndex", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("DataIndex");
},
enumerable: false,
configurable: true
});
WebPivotGridRecordDescription.$t = markType(WebPivotGridRecordDescription, 'WebPivotGridRecordDescription', Description.$);
return WebPivotGridRecordDescription;
}(Description));
export { WebPivotGridRecordDescription };