UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

139 lines (138 loc) 4 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 CalloutRenderStyleUpdatingEventArgsDescription = /*@__PURE__*/ (() => { class CalloutRenderStyleUpdatingEventArgsDescription extends Description { constructor() { super(); this.x = null; this.y = null; this.h = 0; this.i = 0; this.k = 0; this.l = 0; this.r = null; this.t = null; this.f = null; this.s = null; this.w = null; this.v = null; this.u = null; this.j = 0; } get_type() { return "CalloutRenderStyleUpdatingEventArgs"; } get type() { return this.get_type(); } get xValueRef() { return this.x; } set xValueRef(a) { this.x = a; this.e("XValueRef"); } get yValueRef() { return this.y; } set yValueRef(a) { this.y = a; this.e("YValueRef"); } get labelPositionX() { return this.h; } set labelPositionX(a) { this.h = a; this.e("LabelPositionX"); } get labelPositionY() { return this.i; } set labelPositionY(a) { this.i = a; this.e("LabelPositionY"); } get targetPositionX() { return this.k; } set targetPositionX(a) { this.k = a; this.e("TargetPositionX"); } get targetPositionY() { return this.l; } set targetPositionY(a) { this.l = a; this.e("TargetPositionY"); } get actualPosition() { return this.r; } set actualPosition(a) { this.r = a; this.e("ActualPosition"); } get itemRef() { return this.t; } set itemRef(a) { this.t = a; this.e("ItemRef"); } get series() { return this.f; } set series(a) { this.f = a; this.e("Series"); } get background() { return this.s; } set background(a) { this.s = a; this.e("Background"); } get textColor() { return this.w; } set textColor(a) { this.w = a; this.e("TextColor"); } get outline() { return this.v; } set outline(a) { this.v = a; this.e("Outline"); } get leaderBrush() { return this.u; } set leaderBrush(a) { this.u = a; this.e("LeaderBrush"); } get strokeThickness() { return this.j; } set strokeThickness(a) { this.j = a; this.e("StrokeThickness"); } } CalloutRenderStyleUpdatingEventArgsDescription.$t = markType(CalloutRenderStyleUpdatingEventArgsDescription, 'CalloutRenderStyleUpdatingEventArgsDescription', Description.$); return CalloutRenderStyleUpdatingEventArgsDescription; })();