igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
211 lines (210 loc) • 5.96 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 TreemapNodeStyleDescription = /*@__PURE__*/ (() => {
class TreemapNodeStyleDescription extends Description {
constructor() {
super();
this.am = null;
this.al = null;
this.ao = null;
this.ap = null;
this.at = null;
this.an = null;
this.p = 0;
this.r = 0;
this.q = 0;
this.o = 0;
this.t = 0;
this.v = 0;
this.u = 0;
this.s = 0;
this.n = 0;
this.aq = null;
this.ar = null;
this.ak = null;
this.as = null;
this.x = 0;
this.w = 0;
this.m = 0;
this.k = false;
}
get_type() {
return "TreemapNodeStyle";
}
get type() {
return this.get_type();
}
get headerHoverBackground() {
return this.am;
}
set headerHoverBackground(a) {
this.am = a;
this.j("HeaderHoverBackground");
}
get headerBackground() {
return this.al;
}
set headerBackground(a) {
this.al = a;
this.j("HeaderBackground");
}
get headerTextColor() {
return this.ao;
}
set headerTextColor(a) {
this.ao = a;
this.j("HeaderTextColor");
}
get label() {
return this.ap;
}
set label(a) {
this.ap = a;
this.j("Label");
}
get textColor() {
return this.at;
}
set textColor(a) {
this.at = a;
this.j("TextColor");
}
get headerHoverTextColor() {
return this.an;
}
set headerHoverTextColor(a) {
this.an = a;
this.j("HeaderHoverTextColor");
}
get headerLabelLeftMargin() {
return this.p;
}
set headerLabelLeftMargin(a) {
this.p = a;
this.j("HeaderLabelLeftMargin");
}
get headerLabelTopMargin() {
return this.r;
}
set headerLabelTopMargin(a) {
this.r = a;
this.j("HeaderLabelTopMargin");
}
get headerLabelRightMargin() {
return this.q;
}
set headerLabelRightMargin(a) {
this.q = a;
this.j("HeaderLabelRightMargin");
}
get headerLabelBottomMargin() {
return this.o;
}
set headerLabelBottomMargin(a) {
this.o = a;
this.j("HeaderLabelBottomMargin");
}
get labelLeftMargin() {
return this.t;
}
set labelLeftMargin(a) {
this.t = a;
this.j("LabelLeftMargin");
}
get labelTopMargin() {
return this.v;
}
set labelTopMargin(a) {
this.v = a;
this.j("LabelTopMargin");
}
get labelRightMargin() {
return this.u;
}
set labelRightMargin(a) {
this.u = a;
this.j("LabelRightMargin");
}
get labelBottomMargin() {
return this.s;
}
set labelBottomMargin(a) {
this.s = a;
this.j("LabelBottomMargin");
}
get headerHeight() {
return this.n;
}
set headerHeight(a) {
this.n = a;
this.j("HeaderHeight");
}
get labelHorizontalAlignment() {
return this.aq;
}
set labelHorizontalAlignment(a) {
this.aq = a;
this.j("LabelHorizontalAlignment");
}
get labelVerticalAlignment() {
return this.ar;
}
set labelVerticalAlignment(a) {
this.ar = a;
this.j("LabelVerticalAlignment");
}
get fill() {
return this.ak;
}
set fill(a) {
this.ak = a;
this.j("Fill");
}
get outline() {
return this.as;
}
set outline(a) {
this.as = a;
this.j("Outline");
}
get strokeThickness() {
return this.x;
}
set strokeThickness(a) {
this.x = a;
this.j("StrokeThickness");
}
get opacity() {
return this.w;
}
set opacity(a) {
this.w = a;
this.j("Opacity");
}
get fadeOpacity() {
return this.m;
}
set fadeOpacity(a) {
this.m = a;
this.j("FadeOpacity");
}
get highlightingHandled() {
return this.k;
}
set highlightingHandled(a) {
this.k = a;
this.j("HighlightingHandled");
}
}
TreemapNodeStyleDescription.$t = markType(TreemapNodeStyleDescription, 'TreemapNodeStyleDescription', Description.$);
return TreemapNodeStyleDescription;
})();