UNPKG

igniteui-react-core

Version:
128 lines (127 loc) 3.71 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 MarkerSeriesDescription = /*@__PURE__*/ (() => { class MarkerSeriesDescription extends SeriesDescription { get_type() { return "MarkerSeries"; } constructor() { super(); this.fp = null; this.fj = null; this.fa = false; this.fn = null; this.fl = null; this.fo = null; this.fd = 0; this.fc = 0; this.fi = null; this.fk = null; this.fg = null; this.fm = null; this.fh = null; } get markerType() { return this.fp; } set markerType(a) { this.fp = a; this.j("MarkerType"); } get actualMarkerType() { return this.fj; } set actualMarkerType(a) { this.fj = a; this.j("ActualMarkerType"); } get isCustomMarkerCircular() { return this.fa; } set isCustomMarkerCircular(a) { this.fa = a; this.j("IsCustomMarkerCircular"); } get markerOutlineMode() { return this.fn; } set markerOutlineMode(a) { this.fn = a; this.j("MarkerOutlineMode"); } get markerFillMode() { return this.fl; } set markerFillMode(a) { this.fl = a; this.j("MarkerFillMode"); } get markerTemplateRef() { return this.fo; } set markerTemplateRef(a) { this.fo = a; this.j("MarkerTemplateRef"); } get markerThickness() { return this.fd; } set markerThickness(a) { this.fd = a; this.j("MarkerThickness"); } get markerSize() { return this.fc; } set markerSize(a) { this.fc = a; this.j("MarkerSize"); } get actualMarkerTemplateRef() { return this.fi; } set actualMarkerTemplateRef(a) { this.fi = a; this.j("ActualMarkerTemplateRef"); } get markerBrush() { return this.fk; } set markerBrush(a) { this.fk = a; this.j("MarkerBrush"); } get actualMarkerBrush() { return this.fg; } set actualMarkerBrush(a) { this.fg = a; this.j("ActualMarkerBrush"); } get markerOutline() { return this.fm; } set markerOutline(a) { this.fm = a; this.j("MarkerOutline"); } get actualMarkerOutline() { return this.fh; } set actualMarkerOutline(a) { this.fh = a; this.j("ActualMarkerOutline"); } } MarkerSeriesDescription.$t = /*@__PURE__*/ markType(MarkerSeriesDescription, 'MarkerSeriesDescription', SeriesDescription.$); return MarkerSeriesDescription; })();