UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

64 lines (63 loc) 2.32 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 { constructor() { super(); this.fv = null; this.fr = null; this.fq = null; this.fo = null; this.fu = null; } get_type() { return "GeographicContourLineSeries"; } get valueMemberPath() { return this.fv; } set valueMemberPath(a) { this.fv = a; this.j("ValueMemberPath"); } get fillScale() { return this.fr; } set fillScale(a) { this.fr = a; this.j("FillScale"); } get actualFillScale() { return this.fq; } set actualFillScale(a) { this.fq = a; this.j("ActualFillScale"); } get valueResolver() { return this.fo; } set valueResolver(a) { this.fo = a; this.j("ValueResolver"); } get triangulationStatusChangedRef() { return this.fu; } set triangulationStatusChangedRef(a) { this.fu = a; this.j("TriangulationStatusChangedRef"); } } GeographicContourLineSeriesDescription.$t = markType(GeographicContourLineSeriesDescription, 'GeographicContourLineSeriesDescription', GeographicXYTriangulatingSeriesDescription.$); return GeographicContourLineSeriesDescription; })();