igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
128 lines (127 loc) • 3.98 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 { SeriesDescription } from "./SeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ShapeSeriesBaseDescription = /*@__PURE__*/ (() => {
class ShapeSeriesBaseDescription extends SeriesDescription {
constructor() {
super();
this.c5 = false;
this.c4 = false;
this.de = null;
this.dh = null;
this.db = 0;
this.da = 0;
this.di = null;
this.dk = null;
this.dl = null;
this.c8 = 0;
this.dg = null;
this.df = null;
this.dj = null;
}
get_type() {
return "ShapeSeriesBase";
}
get isCustomShapeStyleAllowed() {
return this.c5;
}
set isCustomShapeStyleAllowed(a) {
this.c5 = a;
this.e("IsCustomShapeStyleAllowed");
}
get isCustomShapeMarkerStyleAllowed() {
return this.c4;
}
set isCustomShapeMarkerStyleAllowed(a) {
this.c4 = a;
this.e("IsCustomShapeMarkerStyleAllowed");
}
get actualItemSearchMode() {
return this.de;
}
set actualItemSearchMode(a) {
this.de = a;
this.e("ActualItemSearchMode");
}
get itemSearchMode() {
return this.dh;
}
set itemSearchMode(a) {
this.dh = a;
this.e("ItemSearchMode");
}
get itemSearchThreshold() {
return this.db;
}
set itemSearchThreshold(a) {
this.db = a;
this.e("ItemSearchThreshold");
}
get itemSearchPointsThreshold() {
return this.da;
}
set itemSearchPointsThreshold(a) {
this.da = a;
this.e("ItemSearchPointsThreshold");
}
get shapeMemberPath() {
return this.di;
}
set shapeMemberPath(a) {
this.di = a;
this.e("ShapeMemberPath");
}
get xAxisRef() {
return this.dk;
}
set xAxisRef(a) {
this.dk = a;
this.e("XAxisRef");
}
get yAxisRef() {
return this.dl;
}
set yAxisRef(a) {
this.dl = a;
this.e("YAxisRef");
}
get shapeFilterResolution() {
return this.c8;
}
set shapeFilterResolution(a) {
this.c8 = a;
this.e("ShapeFilterResolution");
}
get assigningShapeStyleRef() {
return this.dg;
}
set assigningShapeStyleRef(a) {
this.dg = a;
this.e("AssigningShapeStyleRef");
}
get assigningShapeMarkerStyleRef() {
return this.df;
}
set assigningShapeMarkerStyleRef(a) {
this.df = a;
this.e("AssigningShapeMarkerStyleRef");
}
get styleShapeRef() {
return this.dj;
}
set styleShapeRef(a) {
this.dj = a;
this.e("StyleShapeRef");
}
}
ShapeSeriesBaseDescription.$t = markType(ShapeSeriesBaseDescription, 'ShapeSeriesBaseDescription', SeriesDescription.$);
return ShapeSeriesBaseDescription;
})();