UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

84 lines (83 loc) 2.32 kB
/* 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 { Base, markType } from "igniteui-angular-core"; import { StringBuilder } from "igniteui-angular-core"; /** * @hidden */ export class TreemapNodeVisualData extends Base { constructor() { super(...arguments); this.d = null; this.b = null; this.c = null; this.a = null; } static { this.$t = markType(TreemapNodeVisualData, 'TreemapNodeVisualData'); } f(a) { if (this.d != null) { this.d.scaleByViewport(a); } if (this.b != null) { this.b.scaleByViewport(a); } if (this.a != null) { this.a.scaleByViewport(a); } if (this.c != null) { this.c.scaleByViewport(a); } } e() { let a = new StringBuilder(0); let b = true; a.u("{"); if (this.d != null) { if (b) { b = false; } else { a.m(", "); } a.m("nodeRect: "); a.m(this.d.serialize()); } if (this.b != null) { if (b) { b = false; } else { a.m(", "); } a.m("headerRect: "); a.m(this.b.serialize()); } if (this.a != null) { if (b) { b = false; } else { a.m(", "); } a.m("label: "); a.m(this.a.serialize()); } if (this.c != null) { if (b) { b = false; } else { a.m(", "); } a.m("highlightRect: "); a.m(this.c.serialize()); } a.u(""); a.u("}"); return a.toString(); } }