UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

80 lines (79 loc) 2.4 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 { Base, markType } from "igniteui-angular-core"; import { IFinancialPriceSeriesProxy_$type } from "./IFinancialPriceSeriesProxy"; /** * @hidden */ export let FinancialPriceSeriesProxy = /*@__PURE__*/ (() => { class FinancialPriceSeriesProxy extends Base { getCloseMemberPath(a) { return a.y9; } getHighMemberPath(a) { return a.zm; } getLowMemberPath(a) { return a.zr; } getOpenMemberPath(a) { return a.zv; } getVolumeMemberPath(a) { return a.zz; } matchesType(a) { if (!a.e6) { return false; } if (a.e7 || a.e8) { return false; } return true; } setCategoryMode(a, b) { a.xd = b; } setCloseMemberPath(a, b) { a.y9 = b; } setDisplayType(a, b) { a.aa2 = b; } setHighMemberPath(a, b) { a.zm = b; } setLowMemberPath(a, b) { a.zr = b; } setOpenMemberPath(a, b) { a.zv = b; } setVolumeMemberPath(a, b) { a.zz = b; } setXAxis(a, b) { a.w5 = b; } setYAxis(a, b) { a.xo = b; } setTrendLineType(a, b) { if (a.e9) { a.trendLineType = b; } } getTrendLineType(a) { if (a.e9) { return a.trendLineType; } return 0; } } FinancialPriceSeriesProxy.$t = markType(FinancialPriceSeriesProxy, 'FinancialPriceSeriesProxy', Base.$, [IFinancialPriceSeriesProxy_$type]); return FinancialPriceSeriesProxy; })();