igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
88 lines (87 loc) • 2.81 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 { FinancialSeriesDescription } from "./FinancialSeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let FinancialIndicatorDescription = /*@__PURE__*/ (() => {
class FinancialIndicatorDescription extends FinancialSeriesDescription {
constructor() {
super();
this.gl = null;
this.gg = 0;
this.gn = null;
this.gm = null;
this.gk = null;
this.ge = 0;
this.gc = null;
this.gh = 0;
}
get_type() {
return "FinancialIndicator";
}
get displayType() {
return this.gl;
}
set displayType(a) {
this.gl = a;
this.j("DisplayType");
}
get ignoreFirst() {
return this.gg;
}
set ignoreFirst(a) {
this.gg = a;
this.j("IgnoreFirst");
}
get trendLineType() {
return this.gn;
}
set trendLineType(a) {
this.gn = a;
this.j("TrendLineType");
}
get trendLineBrush() {
return this.gm;
}
set trendLineBrush(a) {
this.gm = a;
this.j("TrendLineBrush");
}
get actualTrendLineBrush() {
return this.gk;
}
set actualTrendLineBrush(a) {
this.gk = a;
this.j("ActualTrendLineBrush");
}
get trendLineThickness() {
return this.ge;
}
set trendLineThickness(a) {
this.ge = a;
this.j("TrendLineThickness");
}
get trendLineDashArray() {
return this.gc;
}
set trendLineDashArray(a) {
this.gc = a;
this.j("TrendLineDashArray");
}
get trendLinePeriod() {
return this.gh;
}
set trendLinePeriod(a) {
this.gh = a;
this.j("TrendLinePeriod");
}
}
FinancialIndicatorDescription.$t = markType(FinancialIndicatorDescription, 'FinancialIndicatorDescription', FinancialSeriesDescription.$);
return FinancialIndicatorDescription;
})();