igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
120 lines (119 loc) • 3.87 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 { CategorySeriesDescription } from "./CategorySeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let AnchoredCategorySeriesDescription = /*@__PURE__*/ (() => {
class AnchoredCategorySeriesDescription extends CategorySeriesDescription {
constructor() {
super();
this.gs = null;
this.gm = null;
this.gq = null;
this.gr = null;
this.gp = null;
this.go = null;
this.gk = null;
this.gg = 0;
this.ge = null;
this.gi = 0;
this.gn = null;
this.gl = null;
}
get_type() {
return "AnchoredCategorySeries";
}
get valueMemberPath() {
return this.gs;
}
set valueMemberPath(a) {
this.gs = a;
this.j("ValueMemberPath");
}
get highlightedValueMemberPath() {
return this.gm;
}
set highlightedValueMemberPath(a) {
this.gm = a;
this.j("HighlightedValueMemberPath");
}
get valueMemberAsLegendLabel() {
return this.gq;
}
set valueMemberAsLegendLabel(a) {
this.gq = a;
this.j("ValueMemberAsLegendLabel");
}
get valueMemberAsLegendUnit() {
return this.gr;
}
set valueMemberAsLegendUnit(a) {
this.gr = a;
this.j("ValueMemberAsLegendUnit");
}
get trendLineType() {
return this.gp;
}
set trendLineType(a) {
this.gp = a;
this.j("TrendLineType");
}
get trendLineBrush() {
return this.go;
}
set trendLineBrush(a) {
this.go = a;
this.j("TrendLineBrush");
}
get actualTrendLineBrush() {
return this.gk;
}
set actualTrendLineBrush(a) {
this.gk = a;
this.j("ActualTrendLineBrush");
}
get trendLineThickness() {
return this.gg;
}
set trendLineThickness(a) {
this.gg = a;
this.j("TrendLineThickness");
}
get trendLineDashArray() {
return this.ge;
}
set trendLineDashArray(a) {
this.ge = a;
this.j("TrendLineDashArray");
}
get trendLinePeriod() {
return this.gi;
}
set trendLinePeriod(a) {
this.gi = a;
this.j("TrendLinePeriod");
}
get markerCollisionAvoidance() {
return this.gn;
}
set markerCollisionAvoidance(a) {
this.gn = a;
this.j("MarkerCollisionAvoidance");
}
get consolidatedItemHitTestBehavior() {
return this.gl;
}
set consolidatedItemHitTestBehavior(a) {
this.gl = a;
this.j("ConsolidatedItemHitTestBehavior");
}
}
AnchoredCategorySeriesDescription.$t = markType(AnchoredCategorySeriesDescription, 'AnchoredCategorySeriesDescription', CategorySeriesDescription.$);
return AnchoredCategorySeriesDescription;
})();