UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

64 lines (63 loc) 1.96 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 { LegendBaseDescription } from "./LegendBaseDescription"; import { markType } from "./type"; /** * @hidden */ export let LegendDescription = /*@__PURE__*/ (() => { class LegendDescription extends LegendBaseDescription { constructor() { super(); this.ad = null; this.z = null; this.aa = null; this.ab = null; this.ac = null; } get width() { return this.ad; } set width(a) { this.ad = a; this.j("Width"); } get height() { return this.z; } set height(a) { this.z = a; this.j("Height"); } get_type() { return "Legend"; } get orientation() { return this.aa; } set orientation(a) { this.aa = a; this.j("Orientation"); } get textColor() { return this.ab; } set textColor(a) { this.ab = a; this.j("TextColor"); } get textStyle() { return this.ac; } set textStyle(a) { this.ac = a; this.j("TextStyle"); } } LegendDescription.$t = markType(LegendDescription, 'LegendDescription', LegendBaseDescription.$); return LegendDescription; })();