UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

84 lines (83 loc) 3.12 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 { __extends } from "tslib"; import { Base, markType } from "igniteui-react-core"; import { IFinancialPriceSeriesProxy_$type } from "./IFinancialPriceSeriesProxy"; /** * @hidden */ var FinancialPriceSeriesProxy = /** @class */ /*@__PURE__*/ (function (_super) { __extends(FinancialPriceSeriesProxy, _super); function FinancialPriceSeriesProxy() { return _super !== null && _super.apply(this, arguments) || this; } FinancialPriceSeriesProxy.prototype.getCloseMemberPath = function (a) { return a.zf; }; FinancialPriceSeriesProxy.prototype.getHighMemberPath = function (a) { return a.zs; }; FinancialPriceSeriesProxy.prototype.getLowMemberPath = function (a) { return a.zx; }; FinancialPriceSeriesProxy.prototype.getOpenMemberPath = function (a) { return a.z1; }; FinancialPriceSeriesProxy.prototype.getVolumeMemberPath = function (a) { return a.z5; }; FinancialPriceSeriesProxy.prototype.matchesType = function (a) { if (!a.e8) { return false; } if (a.e9 || a.fa) { return false; } return true; }; FinancialPriceSeriesProxy.prototype.setCategoryMode = function (a, b) { a.xj = b; }; FinancialPriceSeriesProxy.prototype.setCloseMemberPath = function (a, b) { a.zf = b; }; FinancialPriceSeriesProxy.prototype.setDisplayType = function (a, b) { a.aa8 = b; }; FinancialPriceSeriesProxy.prototype.setHighMemberPath = function (a, b) { a.zs = b; }; FinancialPriceSeriesProxy.prototype.setLowMemberPath = function (a, b) { a.zx = b; }; FinancialPriceSeriesProxy.prototype.setOpenMemberPath = function (a, b) { a.z1 = b; }; FinancialPriceSeriesProxy.prototype.setVolumeMemberPath = function (a, b) { a.z5 = b; }; FinancialPriceSeriesProxy.prototype.setXAxis = function (a, b) { a.xb = b; }; FinancialPriceSeriesProxy.prototype.setYAxis = function (a, b) { a.xu = b; }; FinancialPriceSeriesProxy.prototype.setTrendLineType = function (a, b) { if (a.fb) { a.trendLineType = b; } }; FinancialPriceSeriesProxy.prototype.getTrendLineType = function (a) { if (a.fb) { return a.trendLineType; } return 0; }; FinancialPriceSeriesProxy.$t = markType(FinancialPriceSeriesProxy, 'FinancialPriceSeriesProxy', Base.$, [IFinancialPriceSeriesProxy_$type]); return FinancialPriceSeriesProxy; }(Base)); export { FinancialPriceSeriesProxy };