igniteui-react-core
Version:
Ignite UI React Core.
69 lines (68 loc) • 2.41 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 WebPivotGridColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebPivotGridColumnDescription, _super);
function WebPivotGridColumnDescription() {
var _this = _super.call(this) || this;
_this.l = null;
_this.h = null;
_this.j = null;
return _this;
}
WebPivotGridColumnDescription.prototype.get_type = function () {
return "WebPivotGridColumn";
};
Object.defineProperty(WebPivotGridColumnDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridColumnDescription.prototype, "field", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.g("Field");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridColumnDescription.prototype, "dimensions", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.g("Dimensions");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridColumnDescription.prototype, "value", {
get: function () {
return this.j;
},
set: function (a) {
this.j = a;
this.g("Value");
},
enumerable: false,
configurable: true
});
WebPivotGridColumnDescription.$t = markType(WebPivotGridColumnDescription, 'WebPivotGridColumnDescription', Description.$);
return WebPivotGridColumnDescription;
}(Description));
export { WebPivotGridColumnDescription };