UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

211 lines (210 loc) 5.88 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let AxisAnnotationDescription = /*@__PURE__*/ (() => { class AxisAnnotationDescription extends Description { constructor() { super(); this.ak = null; this.at = null; this.q = 0; this.ar = null; this.k = null; this.aq = null; this.au = null; this.am = null; this.as = null; this.z = 0; this.s = 0; this.u = 0; this.t = 0; this.r = 0; this.n = false; this.m = false; this.an = null; this.ap = null; this.x = 0; this.v = 0; this.w = 0; this.y = 0; this.ao = null; } get_type() { return "AxisAnnotation"; } get type() { return this.get_type(); } get value() { return this.ak; } set value(a) { this.ak = a; this.j("Value"); } get text() { return this.at; } set text(a) { this.at = a; this.j("Text"); } get backgroundCornerRadius() { return this.q; } set backgroundCornerRadius(a) { this.q = a; this.j("BackgroundCornerRadius"); } get labelFormat() { return this.ar; } set labelFormat(a) { this.ar = a; this.j("LabelFormat"); } get labelFormatSpecifiers() { return this.k; } set labelFormatSpecifiers(a) { this.k = a; this.j("LabelFormatSpecifiers"); } get formatLabelRef() { return this.aq; } set formatLabelRef(a) { this.aq = a; this.j("FormatLabelRef"); } get textColor() { return this.au; } set textColor(a) { this.au = a; this.j("TextColor"); } get background() { return this.am; } set background(a) { this.am = a; this.j("Background"); } get outline() { return this.as; } set outline(a) { this.as = a; this.j("Outline"); } get strokeThickness() { return this.z; } set strokeThickness(a) { this.z = a; this.j("StrokeThickness"); } get backgroundPaddingLeft() { return this.s; } set backgroundPaddingLeft(a) { this.s = a; this.j("BackgroundPaddingLeft"); } get backgroundPaddingTop() { return this.u; } set backgroundPaddingTop(a) { this.u = a; this.j("BackgroundPaddingTop"); } get backgroundPaddingRight() { return this.t; } set backgroundPaddingRight(a) { this.t = a; this.j("BackgroundPaddingRight"); } get backgroundPaddingBottom() { return this.r; } set backgroundPaddingBottom(a) { this.r = a; this.j("BackgroundPaddingBottom"); } get isPillShaped() { return this.n; } set isPillShaped(a) { this.n = a; this.j("IsPillShaped"); } get isBadgeEnabled() { return this.m; } set isBadgeEnabled(a) { this.m = a; this.j("IsBadgeEnabled"); } get badgeBackground() { return this.an; } set badgeBackground(a) { this.an = a; this.j("BadgeBackground"); } get badgeOutline() { return this.ap; } set badgeOutline(a) { this.ap = a; this.j("BadgeOutline"); } get badgeOutlineThickness() { return this.x; } set badgeOutlineThickness(a) { this.x = a; this.j("BadgeOutlineThickness"); } get badgeCornerRadius() { return this.v; } set badgeCornerRadius(a) { this.v = a; this.j("BadgeCornerRadius"); } get badgeMargin() { return this.w; } set badgeMargin(a) { this.w = a; this.j("BadgeMargin"); } get badgeSize() { return this.y; } set badgeSize(a) { this.y = a; this.j("BadgeSize"); } get badgeImagePath() { return this.ao; } set badgeImagePath(a) { this.ao = a; this.j("BadgeImagePath"); } } AxisAnnotationDescription.$t = markType(AxisAnnotationDescription, 'AxisAnnotationDescription', Description.$); return AxisAnnotationDescription; })();