UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

160 lines (159 loc) 4.87 kB
/* 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.fe = false; this.fd = false; this.fr = null; this.fa = null; this.fc = false; this.fo = null; this.ft = null; this.fl = 0; this.fk = 0; this.fu = null; this.fs = null; this.fw = null; this.fx = null; this.fi = 0; this.fq = null; this.fp = null; this.fv = null; } get_type() { return "ShapeSeriesBase"; } get isCustomShapeStyleAllowed() { return this.fe; } set isCustomShapeStyleAllowed(a) { this.fe = a; this.j("IsCustomShapeStyleAllowed"); } get isCustomShapeMarkerStyleAllowed() { return this.fd; } set isCustomShapeMarkerStyleAllowed(a) { this.fd = a; this.j("IsCustomShapeMarkerStyleAllowed"); } get fillMemberPath() { return this.fr; } set fillMemberPath(a) { this.fr = a; this.j("FillMemberPath"); } get fillScale() { return this.fa; } set fillScale(a) { this.fa = a; this.j("FillScale"); } get fillScaleUseGlobalValues() { return this.fc; } set fillScaleUseGlobalValues(a) { this.fc = a; this.j("FillScaleUseGlobalValues"); } get actualItemSearchMode() { return this.fo; } set actualItemSearchMode(a) { this.fo = a; this.j("ActualItemSearchMode"); } get itemSearchMode() { return this.ft; } set itemSearchMode(a) { this.ft = a; this.j("ItemSearchMode"); } get itemSearchThreshold() { return this.fl; } set itemSearchThreshold(a) { this.fl = a; this.j("ItemSearchThreshold"); } get itemSearchPointsThreshold() { return this.fk; } set itemSearchPointsThreshold(a) { this.fk = a; this.j("ItemSearchPointsThreshold"); } get shapeMemberPath() { return this.fu; } set shapeMemberPath(a) { this.fu = a; this.j("ShapeMemberPath"); } get highlightedShapeMemberPath() { return this.fs; } set highlightedShapeMemberPath(a) { this.fs = a; this.j("HighlightedShapeMemberPath"); } get xAxisRef() { return this.fw; } set xAxisRef(a) { this.fw = a; this.j("XAxisRef"); } get yAxisRef() { return this.fx; } set yAxisRef(a) { this.fx = a; this.j("YAxisRef"); } get shapeFilterResolution() { return this.fi; } set shapeFilterResolution(a) { this.fi = a; this.j("ShapeFilterResolution"); } get assigningShapeStyleRef() { return this.fq; } set assigningShapeStyleRef(a) { this.fq = a; this.j("AssigningShapeStyleRef"); } get assigningShapeMarkerStyleRef() { return this.fp; } set assigningShapeMarkerStyleRef(a) { this.fp = a; this.j("AssigningShapeMarkerStyleRef"); } get styleShapeRef() { return this.fv; } set styleShapeRef(a) { this.fv = a; this.j("StyleShapeRef"); } } ShapeSeriesBaseDescription.$t = markType(ShapeSeriesBaseDescription, 'ShapeSeriesBaseDescription', SeriesDescription.$); return ShapeSeriesBaseDescription; })();