igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
131 lines (130 loc) • 4.23 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 WebPivotValueDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebPivotValueDescription, _super);
function WebPivotValueDescription() {
var _this = _super.call(this) || this;
_this.x = null;
_this.v = null;
_this.m = null;
_this.k = null;
_this.p = false;
_this.r = null;
_this.u = null;
_this.w = null;
return _this;
}
WebPivotValueDescription.prototype.get_type = function () {
return "WebPivotValue";
};
Object.defineProperty(WebPivotValueDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDescription.prototype, "member", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("Member");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDescription.prototype, "displayName", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("DisplayName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDescription.prototype, "aggregate", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("Aggregate");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDescription.prototype, "aggregateList", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("AggregateList");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDescription.prototype, "enabled", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("Enabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDescription.prototype, "styles", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("Styles");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDescription.prototype, "dataType", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("DataType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDescription.prototype, "formatterRef", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("FormatterRef");
},
enumerable: false,
configurable: true
});
WebPivotValueDescription.$t = markType(WebPivotValueDescription, 'WebPivotValueDescription', Description.$);
WebPivotValueDescription.__marshalByValue = true;
WebPivotValueDescription.__marshalByValueAlias = "PivotValue";
return WebPivotValueDescription;
}(Description));
export { WebPivotValueDescription };