UNPKG

igniteui-react-core

Version:
64 lines (63 loc) 2.27 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 { GeographicXYTriangulatingSeriesDescription } from "./GeographicXYTriangulatingSeriesDescription"; import { markType } from "./type"; /** * @hidden */ export let GeographicContourLineSeriesDescription = /*@__PURE__*/ (() => { class GeographicContourLineSeriesDescription extends GeographicXYTriangulatingSeriesDescription { get_type() { return "GeographicContourLineSeries"; } constructor() { super(); this.fs = null; this.fo = null; this.fn = null; this.fl = null; this.fr = null; } get valueMemberPath() { return this.fs; } set valueMemberPath(a) { this.fs = a; this.g("ValueMemberPath"); } get fillScale() { return this.fo; } set fillScale(a) { this.fo = a; this.g("FillScale"); } get actualFillScale() { return this.fn; } set actualFillScale(a) { this.fn = a; this.g("ActualFillScale"); } get valueResolver() { return this.fl; } set valueResolver(a) { this.fl = a; this.g("ValueResolver"); } get triangulationStatusChangedRef() { return this.fr; } set triangulationStatusChangedRef(a) { this.fr = a; this.g("TriangulationStatusChangedRef"); } } GeographicContourLineSeriesDescription.$t = /*@__PURE__*/ markType(GeographicContourLineSeriesDescription, 'GeographicContourLineSeriesDescription', GeographicXYTriangulatingSeriesDescription.$); return GeographicContourLineSeriesDescription; })();