igniteui-react-core
Version:
Ignite UI React Core.
56 lines (55 loc) • 2.08 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 GeographicScatterAreaSeriesDescription = /*@__PURE__*/ (() => {
class GeographicScatterAreaSeriesDescription extends GeographicXYTriangulatingSeriesDescription {
get_type() {
return "GeographicScatterAreaSeries";
}
constructor() {
super();
this.fp = null;
this.fm = null;
this.fl = null;
this.fq = null;
}
get colorMemberPath() {
return this.fp;
}
set colorMemberPath(a) {
this.fp = a;
this.g("ColorMemberPath");
}
get colorScale() {
return this.fm;
}
set colorScale(a) {
this.fm = a;
this.g("ColorScale");
}
get actualColorScale() {
return this.fl;
}
set actualColorScale(a) {
this.fl = a;
this.g("ActualColorScale");
}
get triangulationStatusChangedRef() {
return this.fq;
}
set triangulationStatusChangedRef(a) {
this.fq = a;
this.g("TriangulationStatusChangedRef");
}
}
GeographicScatterAreaSeriesDescription.$t = /*@__PURE__*/ markType(GeographicScatterAreaSeriesDescription, 'GeographicScatterAreaSeriesDescription', GeographicXYTriangulatingSeriesDescription.$);
return GeographicScatterAreaSeriesDescription;
})();