UNPKG

igniteui-react-core

Version:
176 lines (175 loc) 5.12 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 { get_type() { return "FinancialSeries"; } constructor() { super(); this.fg = null; this.fm = null; this.fn = null; this.fh = null; this.fe = null; this.ff = null; this.e8 = null; this.fl = null; this.fc = null; this.fa = null; this.fb = null; this.e9 = null; this.fd = null; this.e3 = false; this.fi = null; this.e4 = false; this.e7 = null; this.fj = null; this.fk = null; } get negativeBrush() { return this.fg; } set negativeBrush(a) { this.fg = a; this.g("NegativeBrush"); } get xAxisRef() { return this.fm; } set xAxisRef(a) { this.fm = a; this.g("XAxisRef"); } get yAxisRef() { return this.fn; } set yAxisRef(a) { this.fn = a; this.g("YAxisRef"); } get openMemberPath() { return this.fh; } set openMemberPath(a) { this.fh = a; this.g("OpenMemberPath"); } get highMemberPath() { return this.fe; } set highMemberPath(a) { this.fe = a; this.g("HighMemberPath"); } get lowMemberPath() { return this.ff; } set lowMemberPath(a) { this.ff = a; this.g("LowMemberPath"); } get closeMemberPath() { return this.e8; } set closeMemberPath(a) { this.e8 = a; this.g("CloseMemberPath"); } get volumeMemberPath() { return this.fl; } set volumeMemberPath(a) { this.fl = a; this.g("VolumeMemberPath"); } get highlightedOpenMemberPath() { return this.fc; } set highlightedOpenMemberPath(a) { this.fc = a; this.g("HighlightedOpenMemberPath"); } get highlightedHighMemberPath() { return this.fa; } set highlightedHighMemberPath(a) { this.fa = a; this.g("HighlightedHighMemberPath"); } get highlightedLowMemberPath() { return this.fb; } set highlightedLowMemberPath(a) { this.fb = a; this.g("HighlightedLowMemberPath"); } get highlightedCloseMemberPath() { return this.e9; } set highlightedCloseMemberPath(a) { this.e9 = a; this.g("HighlightedCloseMemberPath"); } get highlightedVolumeMemberPath() { return this.fd; } set highlightedVolumeMemberPath(a) { this.fd = a; this.g("HighlightedVolumeMemberPath"); } get isCustomCategoryStyleAllowed() { return this.e3; } set isCustomCategoryStyleAllowed(a) { this.e3 = a; this.g("IsCustomCategoryStyleAllowed"); } get transitionInMode() { return this.fi; } set transitionInMode(a) { this.fi = a; this.g("TransitionInMode"); } get isTransitionInEnabled() { return this.e4; } set isTransitionInEnabled(a) { this.e4 = a; this.g("IsTransitionInEnabled"); } get assigningCategoryStyleRef() { return this.e7; } set assigningCategoryStyleRef(a) { this.e7 = a; this.g("AssigningCategoryStyleRef"); } get typicalRef() { return this.fj; } set typicalRef(a) { this.fj = a; this.g("TypicalRef"); } get typicalBasedOnRef() { return this.fk; } set typicalBasedOnRef(a) { this.fk = a; this.g("TypicalBasedOnRef"); } } FinancialSeriesDescription.$t = /*@__PURE__*/ markType(FinancialSeriesDescription, 'FinancialSeriesDescription', SeriesDescription.$); return FinancialSeriesDescription; })();