UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

120 lines (119 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 { ShapeSeriesBaseDescription } from "./ShapeSeriesBaseDescription"; import { markType } from "./type"; /** * @hidden */ export let ScatterPolygonSeriesDescription = /*@__PURE__*/ (() => { class ScatterPolygonSeriesDescription extends ShapeSeriesBaseDescription { constructor() { super(); this.f8 = null; this.gl = null; this.gk = null; this.ga = 0; this.ge = null; this.gf = null; this.gc = null; this.gi = null; this.gd = null; this.gg = null; this.gj = null; this.gh = null; } get_type() { return "ScatterPolygonSeries"; } get shapeStyle() { return this.f8; } set shapeStyle(a) { this.f8 = a; this.j("ShapeStyle"); } get markerType() { return this.gl; } set markerType(a) { this.gl = a; this.j("MarkerType"); } get markerTemplateRef() { return this.gk; } set markerTemplateRef(a) { this.gk = a; this.j("MarkerTemplateRef"); } get markerThickness() { return this.ga; } set markerThickness(a) { this.ga = a; this.j("MarkerThickness"); } get actualMarkerTemplateRef() { return this.ge; } set actualMarkerTemplateRef(a) { this.ge = a; this.j("ActualMarkerTemplateRef"); } get markerBrush() { return this.gf; } set markerBrush(a) { this.gf = a; this.j("MarkerBrush"); } get actualMarkerBrush() { return this.gc; } set actualMarkerBrush(a) { this.gc = a; this.j("ActualMarkerBrush"); } get markerOutline() { return this.gi; } set markerOutline(a) { this.gi = a; this.j("MarkerOutline"); } get actualMarkerOutline() { return this.gd; } set actualMarkerOutline(a) { this.gd = a; this.j("ActualMarkerOutline"); } get markerCollisionAvoidance() { return this.gg; } set markerCollisionAvoidance(a) { this.gg = a; this.j("MarkerCollisionAvoidance"); } get markerOutlineMode() { return this.gj; } set markerOutlineMode(a) { this.gj = a; this.j("MarkerOutlineMode"); } get markerFillMode() { return this.gh; } set markerFillMode(a) { this.gh = a; this.j("MarkerFillMode"); } } ScatterPolygonSeriesDescription.$t = markType(ScatterPolygonSeriesDescription, 'ScatterPolygonSeriesDescription', ShapeSeriesBaseDescription.$); return ScatterPolygonSeriesDescription; })();