UNPKG

igniteui-react-core

Version:
72 lines (71 loc) 2.4 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 { GeographicShapeSeriesBaseDescription } from "./GeographicShapeSeriesBaseDescription"; import { markType } from "./type"; /** * @hidden */ export let GeographicPolylineSeriesDescription = /*@__PURE__*/ (() => { class GeographicPolylineSeriesDescription extends GeographicShapeSeriesBaseDescription { get_type() { return "GeographicPolylineSeries"; } constructor() { super(); this.f5 = null; this.f3 = null; this.f4 = null; this.f0 = 0; this.fz = 0; this.f6 = null; } get shapeStyleSelectorRef() { return this.f5; } set shapeStyleSelectorRef(a) { this.f5 = a; this.g("ShapeStyleSelectorRef"); } get shapeFill() { return this.f3; } set shapeFill(a) { this.f3 = a; this.g("ShapeFill"); } get shapeStroke() { return this.f4; } set shapeStroke(a) { this.f4 = a; this.g("ShapeStroke"); } get shapeStrokeThickness() { return this.f0; } set shapeStrokeThickness(a) { this.f0 = a; this.g("ShapeStrokeThickness"); } get shapeOpacity() { return this.fz; } set shapeOpacity(a) { this.fz = a; this.g("ShapeOpacity"); } get styleShapeRef() { return this.f6; } set styleShapeRef(a) { this.f6 = a; this.g("StyleShapeRef"); } } GeographicPolylineSeriesDescription.$t = /*@__PURE__*/ markType(GeographicPolylineSeriesDescription, 'GeographicPolylineSeriesDescription', GeographicShapeSeriesBaseDescription.$); return GeographicPolylineSeriesDescription; })();