igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
86 lines (85 loc) • 3.12 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 { TreemapNodeStyleDescription } from "./TreemapNodeStyleDescription";
import { markType } from "./type";
/**
* @hidden
*/
var TreemapNodeStyleMappingDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(TreemapNodeStyleMappingDescription, _super);
function TreemapNodeStyleMappingDescription() {
var _this = _super.call(this) || this;
_this.a1 = null;
_this.av = 0;
_this.au = 0;
_this.ay = null;
_this.a0 = null;
return _this;
}
TreemapNodeStyleMappingDescription.prototype.get_type = function () {
return "TreemapNodeStyleMapping";
};
Object.defineProperty(TreemapNodeStyleMappingDescription.prototype, "targetType", {
get: function () {
return this.a1;
},
set: function (a) {
this.a1 = a;
this.e("TargetType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStyleMappingDescription.prototype, "minimumValue", {
get: function () {
return this.av;
},
set: function (a) {
this.av = a;
this.e("MinimumValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStyleMappingDescription.prototype, "maximumValue", {
get: function () {
return this.au;
},
set: function (a) {
this.au = a;
this.e("MaximumValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStyleMappingDescription.prototype, "value", {
get: function () {
return this.ay;
},
set: function (a) {
this.ay = a;
this.e("Value");
},
enumerable: false,
configurable: true
});
Object.defineProperty(TreemapNodeStyleMappingDescription.prototype, "mappingMode", {
get: function () {
return this.a0;
},
set: function (a) {
this.a0 = a;
this.e("MappingMode");
},
enumerable: false,
configurable: true
});
TreemapNodeStyleMappingDescription.$t = markType(TreemapNodeStyleMappingDescription, 'TreemapNodeStyleMappingDescription', TreemapNodeStyleDescription.$);
return TreemapNodeStyleMappingDescription;
}(TreemapNodeStyleDescription));
export { TreemapNodeStyleMappingDescription };