UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

160 lines (159 loc) 4.95 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 { FinancialSeriesDescription } from "./FinancialSeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let FinancialPriceSeriesDescription = /*@__PURE__*/ (() => { class FinancialPriceSeriesDescription extends FinancialSeriesDescription { constructor() { super(); this.gv = null; this.gu = null; this.gi = null; this.ge = 0; this.gc = null; this.gg = 0; this.gm = null; this.gj = null; this.gr = null; this.gp = null; this.gn = null; this.gk = null; this.gs = null; this.gq = null; this.go = null; this.gl = null; this.gt = null; } get_type() { return "FinancialPriceSeries"; } get trendLineType() { return this.gv; } set trendLineType(a) { this.gv = a; this.j("TrendLineType"); } get trendLineBrush() { return this.gu; } set trendLineBrush(a) { this.gu = a; this.j("TrendLineBrush"); } get actualTrendLineBrush() { return this.gi; } set actualTrendLineBrush(a) { this.gi = a; this.j("ActualTrendLineBrush"); } get trendLineThickness() { return this.ge; } set trendLineThickness(a) { this.ge = a; this.j("TrendLineThickness"); } get trendLineDashArray() { return this.gc; } set trendLineDashArray(a) { this.gc = a; this.j("TrendLineDashArray"); } get trendLinePeriod() { return this.gg; } set trendLinePeriod(a) { this.gg = a; this.j("TrendLinePeriod"); } get displayType() { return this.gm; } set displayType(a) { this.gm = a; this.j("DisplayType"); } get categoryCollisionMode() { return this.gj; } set categoryCollisionMode(a) { this.gj = a; this.j("CategoryCollisionMode"); } get negativeOutline() { return this.gr; } set negativeOutline(a) { this.gr = a; this.j("NegativeOutline"); } get lowMemberAsLegendLabel() { return this.gp; } set lowMemberAsLegendLabel(a) { this.gp = a; this.j("LowMemberAsLegendLabel"); } get highMemberAsLegendLabel() { return this.gn; } set highMemberAsLegendLabel(a) { this.gn = a; this.j("HighMemberAsLegendLabel"); } get closeMemberAsLegendLabel() { return this.gk; } set closeMemberAsLegendLabel(a) { this.gk = a; this.j("CloseMemberAsLegendLabel"); } get openMemberAsLegendLabel() { return this.gs; } set openMemberAsLegendLabel(a) { this.gs = a; this.j("OpenMemberAsLegendLabel"); } get lowMemberAsLegendUnit() { return this.gq; } set lowMemberAsLegendUnit(a) { this.gq = a; this.j("LowMemberAsLegendUnit"); } get highMemberAsLegendUnit() { return this.go; } set highMemberAsLegendUnit(a) { this.go = a; this.j("HighMemberAsLegendUnit"); } get closeMemberAsLegendUnit() { return this.gl; } set closeMemberAsLegendUnit(a) { this.gl = a; this.j("CloseMemberAsLegendUnit"); } get openMemberAsLegendUnit() { return this.gt; } set openMemberAsLegendUnit(a) { this.gt = a; this.j("OpenMemberAsLegendUnit"); } } FinancialPriceSeriesDescription.$t = markType(FinancialPriceSeriesDescription, 'FinancialPriceSeriesDescription', FinancialSeriesDescription.$); return FinancialPriceSeriesDescription; })();