UNPKG

igniteui-webcomponents-charts

Version:

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

45 lines (44 loc) 1.85 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 { StrategyBasedIndicator } from "./StrategyBasedIndicator"; import { WilliamsPercentRIndicatorStrategy } from "./WilliamsPercentRIndicatorStrategy"; import { typeGetValue, markType } from "igniteui-webcomponents-core"; let WilliamsPercentRIndicator = /*@__PURE__*/ (() => { class WilliamsPercentRIndicator extends StrategyBasedIndicator { bk() { return new WilliamsPercentRIndicator(); } get_acg() { return new WilliamsPercentRIndicatorStrategy(); } get acg() { return this.get_acg(); } get_act() { return WilliamsPercentRIndicator.$; } get act() { return this.get_act(); } get ac1() { return typeGetValue(this.c(WilliamsPercentRIndicator.ac2)); } set ac1(a) { this.h(WilliamsPercentRIndicator.ac2, a); } acm() { return this.ac1; } acv(a) { this.ac1 = a; } } WilliamsPercentRIndicator.$t = /*@__PURE__*/ markType(WilliamsPercentRIndicator, 'WilliamsPercentRIndicator', StrategyBasedIndicator.$); WilliamsPercentRIndicator.ac2 = /*@__PURE__*/ StrategyBasedIndicator.acy(14, WilliamsPercentRIndicator.$); return WilliamsPercentRIndicator; })(); export { WilliamsPercentRIndicator };