UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

88 lines (87 loc) 2.81 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 FinancialIndicatorDescription = /*@__PURE__*/ (() => { class FinancialIndicatorDescription extends FinancialSeriesDescription { constructor() { super(); this.gg = null; this.gb = 0; this.gi = null; this.gh = null; this.gf = null; this.f9 = 0; this.f7 = null; this.gc = 0; } get_type() { return "FinancialIndicator"; } get displayType() { return this.gg; } set displayType(a) { this.gg = a; this.g("DisplayType"); } get ignoreFirst() { return this.gb; } set ignoreFirst(a) { this.gb = a; this.g("IgnoreFirst"); } get trendLineType() { return this.gi; } set trendLineType(a) { this.gi = a; this.g("TrendLineType"); } get trendLineBrush() { return this.gh; } set trendLineBrush(a) { this.gh = a; this.g("TrendLineBrush"); } get actualTrendLineBrush() { return this.gf; } set actualTrendLineBrush(a) { this.gf = a; this.g("ActualTrendLineBrush"); } get trendLineThickness() { return this.f9; } set trendLineThickness(a) { this.f9 = a; this.g("TrendLineThickness"); } get trendLineDashArray() { return this.f7; } set trendLineDashArray(a) { this.f7 = a; this.g("TrendLineDashArray"); } get trendLinePeriod() { return this.gc; } set trendLinePeriod(a) { this.gc = a; this.g("TrendLinePeriod"); } } FinancialIndicatorDescription.$t = markType(FinancialIndicatorDescription, 'FinancialIndicatorDescription', FinancialSeriesDescription.$); return FinancialIndicatorDescription; })();