igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
81 lines (80 loc) • 3.22 kB
JavaScript
/*
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-angular-core";
import { Brush } from "igniteui-angular-core";
/**
* @hidden
*/
export let FullStochasticOscillatorIndicator = /*@__PURE__*/ (() => {
class FullStochasticOscillatorIndicator extends StrategyBasedIndicator {
constructor() {
super();
this.trendLineBrush = ((() => {
let $ret = new Brush();
$ret.fill = "#565656";
return $ret;
})());
this.trendLineType = 10;
this.trendLinePeriod = 3;
}
bk() {
return new FullStochasticOscillatorIndicator();
}
get_acf() {
return new FullStochasticOscillatorIndicatorStrategy();
}
get acf() {
return this.get_acf();
}
get_acs() {
return FullStochasticOscillatorIndicator.$;
}
get acs() {
return this.get_acs();
}
get ac0() {
return typeGetValue(this.c(FullStochasticOscillatorIndicator.ac5));
}
set ac0(a) {
this.h(FullStochasticOscillatorIndicator.ac5, a);
}
acl() {
return this.ac0;
}
acu(a) {
this.ac0 = a;
}
get smoothingPeriod() {
return typeGetValue(this.c(FullStochasticOscillatorIndicator.ac6));
}
set smoothingPeriod(a) {
this.h(FullStochasticOscillatorIndicator.ac6, a);
}
acn() {
return this.smoothingPeriod;
}
get ac2() {
return typeGetValue(this.c(FullStochasticOscillatorIndicator.ac7));
}
set ac2(a) {
this.h(FullStochasticOscillatorIndicator.ac7, a);
}
ack() {
return this.ac2;
}
abv() {
return this.ac2;
}
}
FullStochasticOscillatorIndicator.$t = markType(FullStochasticOscillatorIndicator, 'FullStochasticOscillatorIndicator', StrategyBasedIndicator.$);
FullStochasticOscillatorIndicator.ac5 = StrategyBasedIndicator.acx(14, FullStochasticOscillatorIndicator.$);
FullStochasticOscillatorIndicator.ac6 = StrategyBasedIndicator.acy(3, FullStochasticOscillatorIndicator.$, "SmoothingPeriod");
FullStochasticOscillatorIndicator.ac7 = StrategyBasedIndicator.acy(3, FullStochasticOscillatorIndicator.$, "TriggerPeriod");
return FullStochasticOscillatorIndicator;
})();