igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
115 lines (114 loc) • 3.26 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let TreemapNodeStylingEventArgsDescription = /*@__PURE__*/ (() => {
class TreemapNodeStylingEventArgsDescription extends Description {
constructor() {
super();
this.m = 0;
this.l = 0;
this.r = null;
this.s = null;
this.u = null;
this.t = null;
this.k = 0;
this.v = null;
this.j = 0;
this.h = false;
this.f = null;
}
get_type() {
return "TreemapNodeStylingEventArgs";
}
get type() {
return this.get_type();
}
get value() {
return this.m;
}
set value(a) {
this.m = a;
this.e("Value");
}
get sum() {
return this.l;
}
set sum(a) {
this.l = a;
this.e("Sum");
}
get customValueRef() {
return this.r;
}
set customValueRef(a) {
this.r = a;
this.e("CustomValueRef");
}
get itemRef() {
return this.s;
}
set itemRef(a) {
this.s = a;
this.e("ItemRef");
}
get parentItemRef() {
return this.u;
}
set parentItemRef(a) {
this.u = a;
this.e("ParentItemRef");
}
get label() {
return this.t;
}
set label(a) {
this.t = a;
this.e("Label");
}
get parentValue() {
return this.k;
}
set parentValue(a) {
this.k = a;
this.e("ParentValue");
}
get parentLabel() {
return this.v;
}
set parentLabel(a) {
this.v = a;
this.e("ParentLabel");
}
get parentSum() {
return this.j;
}
set parentSum(a) {
this.j = a;
this.e("ParentSum");
}
get isParent() {
return this.h;
}
set isParent(a) {
this.h = a;
this.e("IsParent");
}
get style() {
return this.f;
}
set style(a) {
this.f = a;
this.e("Style");
}
}
TreemapNodeStylingEventArgsDescription.$t = markType(TreemapNodeStylingEventArgsDescription, 'TreemapNodeStylingEventArgsDescription', Description.$);
return TreemapNodeStylingEventArgsDescription;
})();