UNPKG

igniteui-react-core

Version:
160 lines (159 loc) 4.8 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 { get_type() { return "FinancialPriceSeries"; } constructor() { super(); this.go = null; this.gn = null; this.gb = null; this.f7 = 0; this.f5 = null; this.f9 = 0; this.gf = null; this.gc = null; this.gk = null; this.gi = null; this.gg = null; this.gd = null; this.gl = null; this.gj = null; this.gh = null; this.ge = null; this.gm = null; } get trendLineType() { return this.go; } set trendLineType(a) { this.go = a; this.g("TrendLineType"); } get trendLineBrush() { return this.gn; } set trendLineBrush(a) { this.gn = a; this.g("TrendLineBrush"); } get actualTrendLineBrush() { return this.gb; } set actualTrendLineBrush(a) { this.gb = a; this.g("ActualTrendLineBrush"); } get trendLineThickness() { return this.f7; } set trendLineThickness(a) { this.f7 = a; this.g("TrendLineThickness"); } get trendLineDashArray() { return this.f5; } set trendLineDashArray(a) { this.f5 = a; this.g("TrendLineDashArray"); } get trendLinePeriod() { return this.f9; } set trendLinePeriod(a) { this.f9 = a; this.g("TrendLinePeriod"); } get displayType() { return this.gf; } set displayType(a) { this.gf = a; this.g("DisplayType"); } get categoryCollisionMode() { return this.gc; } set categoryCollisionMode(a) { this.gc = a; this.g("CategoryCollisionMode"); } get negativeOutline() { return this.gk; } set negativeOutline(a) { this.gk = a; this.g("NegativeOutline"); } get lowMemberAsLegendLabel() { return this.gi; } set lowMemberAsLegendLabel(a) { this.gi = a; this.g("LowMemberAsLegendLabel"); } get highMemberAsLegendLabel() { return this.gg; } set highMemberAsLegendLabel(a) { this.gg = a; this.g("HighMemberAsLegendLabel"); } get closeMemberAsLegendLabel() { return this.gd; } set closeMemberAsLegendLabel(a) { this.gd = a; this.g("CloseMemberAsLegendLabel"); } get openMemberAsLegendLabel() { return this.gl; } set openMemberAsLegendLabel(a) { this.gl = a; this.g("OpenMemberAsLegendLabel"); } get lowMemberAsLegendUnit() { return this.gj; } set lowMemberAsLegendUnit(a) { this.gj = a; this.g("LowMemberAsLegendUnit"); } get highMemberAsLegendUnit() { return this.gh; } set highMemberAsLegendUnit(a) { this.gh = a; this.g("HighMemberAsLegendUnit"); } get closeMemberAsLegendUnit() { return this.ge; } set closeMemberAsLegendUnit(a) { this.ge = a; this.g("CloseMemberAsLegendUnit"); } get openMemberAsLegendUnit() { return this.gm; } set openMemberAsLegendUnit(a) { this.gm = a; this.g("OpenMemberAsLegendUnit"); } } FinancialPriceSeriesDescription.$t = /*@__PURE__*/ markType(FinancialPriceSeriesDescription, 'FinancialPriceSeriesDescription', FinancialSeriesDescription.$); return FinancialPriceSeriesDescription; })();