UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

163 lines (162 loc) 4.56 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 CalloutAnnotationDescription = /*@__PURE__*/ (() => { class CalloutAnnotationDescription extends Description { constructor() { super(); this.ab = null; this.ac = null; this.z = null; this.w = null; this.u = null; this.f = null; this.v = null; this.aa = null; this.t = null; this.y = null; this.x = null; this.m = 0; this.j = 0; this.l = 0; this.k = 0; this.i = 0; this.h = 0; } get_type() { return "CalloutAnnotation"; } get type() { return this.get_type(); } get xValueRef() { return this.ab; } set xValueRef(a) { this.ab = a; this.e("XValueRef"); } get yValueRef() { return this.ac; } set yValueRef(a) { this.ac = a; this.e("YValueRef"); } get text() { return this.z; } set text(a) { this.z = a; this.e("Text"); } get keyRef() { return this.w; } set keyRef(a) { this.w = a; this.e("KeyRef"); } get contentRef() { return this.u; } set contentRef(a) { this.u = a; this.e("ContentRef"); } get series() { return this.f; } set series(a) { this.f = a; this.e("Series"); } get formatLabelRef() { return this.v; } set formatLabelRef(a) { this.v = a; this.e("FormatLabelRef"); } get textColor() { return this.aa; } set textColor(a) { this.aa = a; this.e("TextColor"); } get background() { return this.t; } set background(a) { this.t = a; this.e("Background"); } get outline() { return this.y; } set outline(a) { this.y = a; this.e("Outline"); } get leaderBrush() { return this.x; } set leaderBrush(a) { this.x = a; this.e("LeaderBrush"); } get strokeThickness() { return this.m; } set strokeThickness(a) { this.m = a; this.e("StrokeThickness"); } get backgroundPaddingLeft() { return this.j; } set backgroundPaddingLeft(a) { this.j = a; this.e("BackgroundPaddingLeft"); } get backgroundPaddingTop() { return this.l; } set backgroundPaddingTop(a) { this.l = a; this.e("BackgroundPaddingTop"); } get backgroundPaddingRight() { return this.k; } set backgroundPaddingRight(a) { this.k = a; this.e("BackgroundPaddingRight"); } get backgroundPaddingBottom() { return this.i; } set backgroundPaddingBottom(a) { this.i = a; this.e("BackgroundPaddingBottom"); } get backgroundCornerRadius() { return this.h; } set backgroundCornerRadius(a) { this.h = a; this.e("BackgroundCornerRadius"); } } CalloutAnnotationDescription.$t = markType(CalloutAnnotationDescription, 'CalloutAnnotationDescription', Description.$); return CalloutAnnotationDescription; })();