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;
}
bj() {
return new FullStochasticOscillatorIndicator();
}
get_abu() {
return new FullStochasticOscillatorIndicatorStrategy();
}
get abu() {
return this.get_abu();
}
get_ab7() {
return FullStochasticOscillatorIndicator.$;
}
get ab7() {
return this.get_ab7();
}
get acf() {
return typeGetValue(this.c(FullStochasticOscillatorIndicator.ack));
}
set acf(a) {
this.h(FullStochasticOscillatorIndicator.ack, a);
}
ab0() {
return this.acf;
}
ab9(a) {
this.acf = a;
}
get smoothingPeriod() {
return typeGetValue(this.c(FullStochasticOscillatorIndicator.acl));
}
set smoothingPeriod(a) {
this.h(FullStochasticOscillatorIndicator.acl, a);
}
ab2() {
return this.smoothingPeriod;
}
get ach() {
return typeGetValue(this.c(FullStochasticOscillatorIndicator.acm));
}
set ach(a) {
this.h(FullStochasticOscillatorIndicator.acm, a);
}
abz() {
return this.ach;
}
aba() {
return this.ach;
}
}
FullStochasticOscillatorIndicator.$t = markType(FullStochasticOscillatorIndicator, 'FullStochasticOscillatorIndicator', StrategyBasedIndicator.$);
FullStochasticOscillatorIndicator.ack = StrategyBasedIndicator.acc(14, FullStochasticOscillatorIndicator.$);
FullStochasticOscillatorIndicator.acl = StrategyBasedIndicator.acd(3, FullStochasticOscillatorIndicator.$, "SmoothingPeriod");
FullStochasticOscillatorIndicator.acm = StrategyBasedIndicator.acd(3, FullStochasticOscillatorIndicator.$, "TriggerPeriod");
return FullStochasticOscillatorIndicator;
})();