igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
213 lines (212 loc) • 6.89 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 TreemapNodeStylingEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(TreemapNodeStylingEventArgsDescription, _super);
function TreemapNodeStylingEventArgsDescription() {
var _this = _super.call(this) || this;
_this.y = 0;
_this.w = 0;
_this.ae = null;
_this.af = null;
_this.ah = null;
_this.ag = null;
_this.v = 0;
_this.ai = null;
_this.u = 0;
_this.q = false;
_this.m = null;
_this.k = null;
_this.o = false;
_this.p = false;
_this.x = 0;
return _this;
}
TreemapNodeStylingEventArgsDescription.prototype.get_type = function () {
return "TreemapNodeStylingEventArgs";
};
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "value", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("Value");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "sum", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("Sum");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "customValueRef", {
get: function () {
return this.ae;
},
set: function (a) {
this.ae = a;
this.j("CustomValueRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "itemRef", {
get: function () {
return this.af;
},
set: function (a) {
this.af = a;
this.j("ItemRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "parentItemRef", {
get: function () {
return this.ah;
},
set: function (a) {
this.ah = a;
this.j("ParentItemRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "label", {
get: function () {
return this.ag;
},
set: function (a) {
this.ag = a;
this.j("Label");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "parentValue", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("ParentValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "parentLabel", {
get: function () {
return this.ai;
},
set: function (a) {
this.ai = a;
this.j("ParentLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "parentSum", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("ParentSum");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "isParent", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("IsParent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "style", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("Style");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "highlightingInfo", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("HighlightingInfo");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "highlightingHandled", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("HighlightingHandled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "isHighlightInProgress", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("IsHighlightInProgress");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStylingEventArgsDescription.prototype, "totalHighlightProgress", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("TotalHighlightProgress");
},
enumerable: false,
configurable: true
});
TreemapNodeStylingEventArgsDescription.$t = markType(TreemapNodeStylingEventArgsDescription, 'TreemapNodeStylingEventArgsDescription', Description.$);
return TreemapNodeStylingEventArgsDescription;
}(Description));
export { TreemapNodeStylingEventArgsDescription };