UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

163 lines (162 loc) 4.77 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 AssigningSeriesStyleEventArgsBaseDescription = /*@__PURE__*/ (() => { class AssigningSeriesStyleEventArgsBaseDescription extends Description { constructor() { super(); this.ae = 0; this.ad = 0; this.q = new Date(); this.p = new Date(); this.ai = null; this.ah = null; this.aj = null; this.v = 0; this.t = 0; this.f = null; this.u = 0; this.w = 0; this.x = 0; this.i = false; this.h = false; this.j = false; this.k = false; } get_type() { return "AssigningSeriesStyleEventArgsBase"; } get type() { return this.get_type(); } get startIndex() { return this.ae; } set startIndex(a) { this.ae = a; this.e("StartIndex"); } get endIndex() { return this.ad; } set endIndex(a) { this.ad = a; this.e("EndIndex"); } get startDate() { return this.q; } set startDate(a) { this.q = a; this.e("StartDate"); } get endDate() { return this.p; } set endDate(a) { this.p = a; this.e("EndDate"); } get getItemsRef() { return this.ai; } set getItemsRef(a) { this.ai = a; this.e("GetItemsRef"); } get fill() { return this.ah; } set fill(a) { this.ah = a; this.e("Fill"); } get stroke() { return this.aj; } set stroke(a) { this.aj = a; this.e("Stroke"); } get opacity() { return this.v; } set opacity(a) { this.v = a; this.e("Opacity"); } get fadeOpacity() { return this.t; } set fadeOpacity(a) { this.t = a; this.e("FadeOpacity"); } get highlightingInfo() { return this.f; } set highlightingInfo(a) { this.f = a; this.e("HighlightingInfo"); } get maxAllSeriesHighlightingProgress() { return this.u; } set maxAllSeriesHighlightingProgress(a) { this.u = a; this.e("MaxAllSeriesHighlightingProgress"); } get sumAllSeriesHighlightingProgress() { return this.w; } set sumAllSeriesHighlightingProgress(a) { this.w = a; this.e("SumAllSeriesHighlightingProgress"); } get totalAllSeriesHighlightingProgress() { return this.x; } set totalAllSeriesHighlightingProgress(a) { this.x = a; this.e("TotalAllSeriesHighlightingProgress"); } get highlightingHandled() { return this.i; } set highlightingHandled(a) { this.i = a; this.e("HighlightingHandled"); } get hasDateRange() { return this.h; } set hasDateRange(a) { this.h = a; this.e("HasDateRange"); } get isNegativeShape() { return this.j; } set isNegativeShape(a) { this.j = a; this.e("IsNegativeShape"); } get isThumbnail() { return this.k; } set isThumbnail(a) { this.k = a; this.e("IsThumbnail"); } } AssigningSeriesStyleEventArgsBaseDescription.$t = markType(AssigningSeriesStyleEventArgsBaseDescription, 'AssigningSeriesStyleEventArgsBaseDescription', Description.$); return AssigningSeriesStyleEventArgsBaseDescription; })();