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.zv; }; FinancialPriceSeriesProxy.prototype.getHighMemberPath = function (a) { return a.z8; }; FinancialPriceSeriesProxy.prototype.getLowMemberPath = function (a) { return a.aad; }; FinancialPriceSeriesProxy.prototype.getOpenMemberPath = function (a) { return a.aah; }; FinancialPriceSeriesProxy.prototype.getVolumeMemberPath = function (a) { return a.aal; }; FinancialPriceSeriesProxy.prototype.matchesType = function (a) { if (!a.fa) { return false; } if (a.fb || a.fc) { return false; } return true; }; FinancialPriceSeriesProxy.prototype.setCategoryMode = function (a, b) { a.xz = b; }; FinancialPriceSeriesProxy.prototype.setCloseMemberPath = function (a, b) { a.zv = b; }; FinancialPriceSeriesProxy.prototype.setDisplayType = function (a, b) { a.abo = b; }; FinancialPriceSeriesProxy.prototype.setHighMemberPath = function (a, b) { a.z8 = b; }; FinancialPriceSeriesProxy.prototype.setLowMemberPath = function (a, b) { a.aad = b; }; FinancialPriceSeriesProxy.prototype.setOpenMemberPath = function (a, b) { a.aah = b; }; FinancialPriceSeriesProxy.prototype.setVolumeMemberPath = function (a, b) { a.aal = b; }; FinancialPriceSeriesProxy.prototype.setXAxis = function (a, b) { a.xr = b; }; FinancialPriceSeriesProxy.prototype.setYAxis = function (a, b) { a.ya = b; }; FinancialPriceSeriesProxy.prototype.setTrendLineType = function (a, b) { if (a.fd) { a.trendLineType = b; } }; FinancialPriceSeriesProxy.prototype.getTrendLineType = function (a) { if (a.fd) { return a.trendLineType; } return 0; }; FinancialPriceSeriesProxy.$t = markType(FinancialPriceSeriesProxy, 'FinancialPriceSeriesProxy', Base.$, [IFinancialPriceSeriesProxy_$type]); return FinancialPriceSeriesProxy; }(Base)); export { FinancialPriceSeriesProxy };