UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

144 lines (143 loc) 4.5 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.ed = null; this.ec = null; this.d1 = null; this.dx = 0; this.dz = 0; this.d4 = null; this.d9 = null; this.d7 = null; this.d5 = null; this.d2 = null; this.ea = null; this.d8 = null; this.d6 = null; this.d3 = null; this.eb = null; } get_type() { return "FinancialPriceSeries"; } get trendLineType() { return this.ed; } set trendLineType(a) { this.ed = a; this.e("TrendLineType"); } get trendLineBrush() { return this.ec; } set trendLineBrush(a) { this.ec = a; this.e("TrendLineBrush"); } get actualTrendLineBrush() { return this.d1; } set actualTrendLineBrush(a) { this.d1 = a; this.e("ActualTrendLineBrush"); } get trendLineThickness() { return this.dx; } set trendLineThickness(a) { this.dx = a; this.e("TrendLineThickness"); } get trendLinePeriod() { return this.dz; } set trendLinePeriod(a) { this.dz = a; this.e("TrendLinePeriod"); } get displayType() { return this.d4; } set displayType(a) { this.d4 = a; this.e("DisplayType"); } get negativeOutline() { return this.d9; } set negativeOutline(a) { this.d9 = a; this.e("NegativeOutline"); } get lowMemberAsLegendLabel() { return this.d7; } set lowMemberAsLegendLabel(a) { this.d7 = a; this.e("LowMemberAsLegendLabel"); } get highMemberAsLegendLabel() { return this.d5; } set highMemberAsLegendLabel(a) { this.d5 = a; this.e("HighMemberAsLegendLabel"); } get closeMemberAsLegendLabel() { return this.d2; } set closeMemberAsLegendLabel(a) { this.d2 = a; this.e("CloseMemberAsLegendLabel"); } get openMemberAsLegendLabel() { return this.ea; } set openMemberAsLegendLabel(a) { this.ea = a; this.e("OpenMemberAsLegendLabel"); } get lowMemberAsLegendUnit() { return this.d8; } set lowMemberAsLegendUnit(a) { this.d8 = a; this.e("LowMemberAsLegendUnit"); } get highMemberAsLegendUnit() { return this.d6; } set highMemberAsLegendUnit(a) { this.d6 = a; this.e("HighMemberAsLegendUnit"); } get closeMemberAsLegendUnit() { return this.d3; } set closeMemberAsLegendUnit(a) { this.d3 = a; this.e("CloseMemberAsLegendUnit"); } get openMemberAsLegendUnit() { return this.eb; } set openMemberAsLegendUnit(a) { this.eb = a; this.e("OpenMemberAsLegendUnit"); } } FinancialPriceSeriesDescription.$t = markType(FinancialPriceSeriesDescription, 'FinancialPriceSeriesDescription', FinancialSeriesDescription.$); return FinancialPriceSeriesDescription; })();