UNPKG

igniteui-webcomponents-charts

Version:

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

79 lines (78 loc) 3.23 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 { FullStochasticOscillatorIndicatorStrategy } from "./FullStochasticOscillatorIndicatorStrategy"; import { typeGetValue, markType } from "igniteui-webcomponents-core"; import { Brush } from "igniteui-webcomponents-core"; let FullStochasticOscillatorIndicator = /*@__PURE__*/ (() => { class FullStochasticOscillatorIndicator extends StrategyBasedIndicator { bk() { return new FullStochasticOscillatorIndicator(); } constructor() { super(); this.trendLineBrush = ((() => { let $ret = new Brush(); $ret.fill = "#565656"; return $ret; })()); this.trendLineType = 10; this.trendLinePeriod = 3; } get_acg() { return new FullStochasticOscillatorIndicatorStrategy(); } get acg() { return this.get_acg(); } get_act() { return FullStochasticOscillatorIndicator.$; } get act() { return this.get_act(); } get ac1() { return typeGetValue(this.c(FullStochasticOscillatorIndicator.ac6)); } set ac1(a) { this.h(FullStochasticOscillatorIndicator.ac6, a); } acm() { return this.ac1; } acv(a) { this.ac1 = a; } get smoothingPeriod() { return typeGetValue(this.c(FullStochasticOscillatorIndicator.ac7)); } set smoothingPeriod(a) { this.h(FullStochasticOscillatorIndicator.ac7, a); } aco() { return this.smoothingPeriod; } get ac3() { return typeGetValue(this.c(FullStochasticOscillatorIndicator.ac8)); } set ac3(a) { this.h(FullStochasticOscillatorIndicator.ac8, a); } acl() { return this.ac3; } abw() { return this.ac3; } } FullStochasticOscillatorIndicator.$t = /*@__PURE__*/ markType(FullStochasticOscillatorIndicator, 'FullStochasticOscillatorIndicator', StrategyBasedIndicator.$); FullStochasticOscillatorIndicator.ac6 = /*@__PURE__*/ StrategyBasedIndicator.acy(14, FullStochasticOscillatorIndicator.$); FullStochasticOscillatorIndicator.ac7 = /*@__PURE__*/ StrategyBasedIndicator.acz(3, FullStochasticOscillatorIndicator.$, "SmoothingPeriod"); FullStochasticOscillatorIndicator.ac8 = /*@__PURE__*/ StrategyBasedIndicator.acz(3, FullStochasticOscillatorIndicator.$, "TriggerPeriod"); return FullStochasticOscillatorIndicator; })(); export { FullStochasticOscillatorIndicator };