igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
64 lines (63 loc) • 2.32 kB
JavaScript
/*
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.ds = null;
this.dn = null;
this.dm = null;
this.dk = null;
this.dr = null;
}
get_type() {
return "GeographicContourLineSeries";
}
get valueMemberPath() {
return this.ds;
}
set valueMemberPath(a) {
this.ds = a;
this.e("ValueMemberPath");
}
get fillScale() {
return this.dn;
}
set fillScale(a) {
this.dn = a;
this.e("FillScale");
}
get actualFillScale() {
return this.dm;
}
set actualFillScale(a) {
this.dm = a;
this.e("ActualFillScale");
}
get valueResolver() {
return this.dk;
}
set valueResolver(a) {
this.dk = a;
this.e("ValueResolver");
}
get triangulationStatusChangedRef() {
return this.dr;
}
set triangulationStatusChangedRef(a) {
this.dr = a;
this.e("TriangulationStatusChangedRef");
}
}
GeographicContourLineSeriesDescription.$t = markType(GeographicContourLineSeriesDescription, 'GeographicContourLineSeriesDescription', GeographicXYTriangulatingSeriesDescription.$);
return GeographicContourLineSeriesDescription;
})();