igniteui-react-core
Version:
Ignite UI React Core.
56 lines (55 loc) • 1.89 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 { AnnotationLayerDescription } from "./AnnotationLayerDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let TrendLineLayerDescription = /*@__PURE__*/ (() => {
class TrendLineLayerDescription extends AnnotationLayerDescription {
get_type() {
return "TrendLineLayer";
}
constructor() {
super();
this.gh = null;
this.gi = null;
this.gj = null;
this.gf = 0;
}
get targetSeriesName() {
return this.gh;
}
set targetSeriesName(a) {
this.gh = a;
this.g("TargetSeriesName");
}
get targetSeriesRef() {
return this.gi;
}
set targetSeriesRef(a) {
this.gi = a;
this.g("TargetSeriesRef");
}
get trendLineType() {
return this.gj;
}
set trendLineType(a) {
this.gj = a;
this.g("TrendLineType");
}
get trendLinePeriod() {
return this.gf;
}
set trendLinePeriod(a) {
this.gf = a;
this.g("TrendLinePeriod");
}
}
TrendLineLayerDescription.$t = /*@__PURE__*/ markType(TrendLineLayerDescription, 'TrendLineLayerDescription', AnnotationLayerDescription.$);
return TrendLineLayerDescription;
})();