UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

136 lines (135 loc) 4.06 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 { SeriesDescription } from "./SeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let FinancialSeriesDescription = /*@__PURE__*/ (() => { class FinancialSeriesDescription extends SeriesDescription { constructor() { super(); this.dc = null; this.di = null; this.dj = null; this.dd = null; this.da = null; this.db = null; this.c9 = null; this.dh = null; this.c4 = false; this.de = null; this.c5 = false; this.c8 = null; this.df = null; this.dg = null; } get_type() { return "FinancialSeries"; } get negativeBrush() { return this.dc; } set negativeBrush(a) { this.dc = a; this.e("NegativeBrush"); } get xAxisRef() { return this.di; } set xAxisRef(a) { this.di = a; this.e("XAxisRef"); } get yAxisRef() { return this.dj; } set yAxisRef(a) { this.dj = a; this.e("YAxisRef"); } get openMemberPath() { return this.dd; } set openMemberPath(a) { this.dd = a; this.e("OpenMemberPath"); } get highMemberPath() { return this.da; } set highMemberPath(a) { this.da = a; this.e("HighMemberPath"); } get lowMemberPath() { return this.db; } set lowMemberPath(a) { this.db = a; this.e("LowMemberPath"); } get closeMemberPath() { return this.c9; } set closeMemberPath(a) { this.c9 = a; this.e("CloseMemberPath"); } get volumeMemberPath() { return this.dh; } set volumeMemberPath(a) { this.dh = a; this.e("VolumeMemberPath"); } get isCustomCategoryStyleAllowed() { return this.c4; } set isCustomCategoryStyleAllowed(a) { this.c4 = a; this.e("IsCustomCategoryStyleAllowed"); } get transitionInMode() { return this.de; } set transitionInMode(a) { this.de = a; this.e("TransitionInMode"); } get isTransitionInEnabled() { return this.c5; } set isTransitionInEnabled(a) { this.c5 = a; this.e("IsTransitionInEnabled"); } get assigningCategoryStyleRef() { return this.c8; } set assigningCategoryStyleRef(a) { this.c8 = a; this.e("AssigningCategoryStyleRef"); } get typicalRef() { return this.df; } set typicalRef(a) { this.df = a; this.e("TypicalRef"); } get typicalBasedOnRef() { return this.dg; } set typicalBasedOnRef(a) { this.dg = a; this.e("TypicalBasedOnRef"); } } FinancialSeriesDescription.$t = markType(FinancialSeriesDescription, 'FinancialSeriesDescription', SeriesDescription.$); return FinancialSeriesDescription; })();