igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
80 lines (79 loc) • 2.58 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.d4 = null;
this.dz = 0;
this.d6 = null;
this.d5 = null;
this.d3 = null;
this.dx = 0;
this.d0 = 0;
}
get_type() {
return "FinancialIndicator";
}
get displayType() {
return this.d4;
}
set displayType(a) {
this.d4 = a;
this.e("DisplayType");
}
get ignoreFirst() {
return this.dz;
}
set ignoreFirst(a) {
this.dz = a;
this.e("IgnoreFirst");
}
get trendLineType() {
return this.d6;
}
set trendLineType(a) {
this.d6 = a;
this.e("TrendLineType");
}
get trendLineBrush() {
return this.d5;
}
set trendLineBrush(a) {
this.d5 = a;
this.e("TrendLineBrush");
}
get actualTrendLineBrush() {
return this.d3;
}
set actualTrendLineBrush(a) {
this.d3 = a;
this.e("ActualTrendLineBrush");
}
get trendLineThickness() {
return this.dx;
}
set trendLineThickness(a) {
this.dx = a;
this.e("TrendLineThickness");
}
get trendLinePeriod() {
return this.d0;
}
set trendLinePeriod(a) {
this.d0 = a;
this.e("TrendLinePeriod");
}
}
FinancialIndicatorDescription.$t = markType(FinancialIndicatorDescription, 'FinancialIndicatorDescription', FinancialSeriesDescription.$);
return FinancialIndicatorDescription;
})();