igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
96 lines (95 loc) • 3.08 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 { RadialBaseDescription } from "./RadialBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let AnchoredRadialSeriesDescription = /*@__PURE__*/ (() => {
class AnchoredRadialSeriesDescription extends RadialBaseDescription {
constructor() {
super();
this.ee = null;
this.ec = null;
this.ed = null;
this.eb = null;
this.ea = null;
this.d9 = null;
this.d3 = 0;
this.d5 = 0;
this.d6 = 0;
}
get_type() {
return "AnchoredRadialSeries";
}
get valueMemberPath() {
return this.ee;
}
set valueMemberPath(a) {
this.ee = a;
this.e("ValueMemberPath");
}
get valueMemberAsLegendLabel() {
return this.ec;
}
set valueMemberAsLegendLabel(a) {
this.ec = a;
this.e("ValueMemberAsLegendLabel");
}
get valueMemberAsLegendUnit() {
return this.ed;
}
set valueMemberAsLegendUnit(a) {
this.ed = a;
this.e("ValueMemberAsLegendUnit");
}
get trendLineType() {
return this.eb;
}
set trendLineType(a) {
this.eb = a;
this.e("TrendLineType");
}
get trendLineBrush() {
return this.ea;
}
set trendLineBrush(a) {
this.ea = a;
this.e("TrendLineBrush");
}
get actualTrendLineBrush() {
return this.d9;
}
set actualTrendLineBrush(a) {
this.d9 = a;
this.e("ActualTrendLineBrush");
}
get trendLineThickness() {
return this.d3;
}
set trendLineThickness(a) {
this.d3 = a;
this.e("TrendLineThickness");
}
get trendLinePeriod() {
return this.d5;
}
set trendLinePeriod(a) {
this.d5 = a;
this.e("TrendLinePeriod");
}
get trendLineZIndex() {
return this.d6;
}
set trendLineZIndex(a) {
this.d6 = a;
this.e("TrendLineZIndex");
}
}
AnchoredRadialSeriesDescription.$t = markType(AnchoredRadialSeriesDescription, 'AnchoredRadialSeriesDescription', RadialBaseDescription.$);
return AnchoredRadialSeriesDescription;
})();