igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
72 lines (71 loc) • 2.47 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 { ScatterTriangulationSeriesDescription } from "./ScatterTriangulationSeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ScatterContourSeriesDescription = /*@__PURE__*/ (() => {
class ScatterContourSeriesDescription extends ScatterTriangulationSeriesDescription {
constructor() {
super();
this.f3 = null;
this.f1 = null;
this.f2 = null;
this.fy = null;
this.fx = null;
this.fv = null;
}
get_type() {
return "ScatterContourSeries";
}
get valueMemberPath() {
return this.f3;
}
set valueMemberPath(a) {
this.f3 = a;
this.g("ValueMemberPath");
}
get valueMemberAsLegendLabel() {
return this.f1;
}
set valueMemberAsLegendLabel(a) {
this.f1 = a;
this.g("ValueMemberAsLegendLabel");
}
get valueMemberAsLegendUnit() {
return this.f2;
}
set valueMemberAsLegendUnit(a) {
this.f2 = a;
this.g("ValueMemberAsLegendUnit");
}
get fillScale() {
return this.fy;
}
set fillScale(a) {
this.fy = a;
this.g("FillScale");
}
get actualFillScale() {
return this.fx;
}
set actualFillScale(a) {
this.fx = a;
this.g("ActualFillScale");
}
get valueResolver() {
return this.fv;
}
set valueResolver(a) {
this.fv = a;
this.g("ValueResolver");
}
}
ScatterContourSeriesDescription.$t = markType(ScatterContourSeriesDescription, 'ScatterContourSeriesDescription', ScatterTriangulationSeriesDescription.$);
return ScatterContourSeriesDescription;
})();