UNPKG

igniteui-webcomponents-charts

Version:

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

48 lines (47 loc) 2.2 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 { ItemwiseStrategyBasedIndicator } from "./ItemwiseStrategyBasedIndicator"; import { MarketFacilitationIndexIndicatorStrategy } from "./MarketFacilitationIndexIndicatorStrategy"; import { markType } from "igniteui-webcomponents-core"; /** * @hidden */ export var MarketFacilitationIndexIndicator = /** @class */ /*@__PURE__*/ (function (_super) { __extends(MarketFacilitationIndexIndicator, _super); function MarketFacilitationIndexIndicator() { return _super.call(this) || this; } MarketFacilitationIndexIndicator.prototype.bk = function () { return new MarketFacilitationIndexIndicator(); }; MarketFacilitationIndexIndicator.prototype.get_abn = function () { return 1; }; MarketFacilitationIndexIndicator.prototype.get_ac2 = function () { return new MarketFacilitationIndexIndicatorStrategy(); }; Object.defineProperty(MarketFacilitationIndexIndicator.prototype, "ac2", { get: function () { return this.get_ac2(); }, enumerable: false, configurable: true }); MarketFacilitationIndexIndicator.prototype.get_act = function () { return MarketFacilitationIndexIndicator.$; }; Object.defineProperty(MarketFacilitationIndexIndicator.prototype, "act", { get: function () { return this.get_act(); }, enumerable: false, configurable: true }); MarketFacilitationIndexIndicator.$t = markType(MarketFacilitationIndexIndicator, 'MarketFacilitationIndexIndicator', ItemwiseStrategyBasedIndicator.$); return MarketFacilitationIndexIndicator; }(ItemwiseStrategyBasedIndicator));