igniteui-react-core
Version:
Ignite UI React Core.
98 lines (97 loc) • 3.45 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 { __extends } from "tslib";
import { ScatterTriangulationSeriesDescription } from "./ScatterTriangulationSeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var ScatterContourSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ScatterContourSeriesDescription, _super);
function ScatterContourSeriesDescription() {
var _this = _super.call(this) || this;
_this.f3 = null;
_this.f1 = null;
_this.f2 = null;
_this.fy = null;
_this.fx = null;
_this.fv = null;
return _this;
}
ScatterContourSeriesDescription.prototype.get_type = function () {
return "ScatterContourSeries";
};
Object.defineProperty(ScatterContourSeriesDescription.prototype, "valueMemberPath", {
get: function () {
return this.f3;
},
set: function (a) {
this.f3 = a;
this.g("ValueMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterContourSeriesDescription.prototype, "valueMemberAsLegendLabel", {
get: function () {
return this.f1;
},
set: function (a) {
this.f1 = a;
this.g("ValueMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterContourSeriesDescription.prototype, "valueMemberAsLegendUnit", {
get: function () {
return this.f2;
},
set: function (a) {
this.f2 = a;
this.g("ValueMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterContourSeriesDescription.prototype, "fillScale", {
get: function () {
return this.fy;
},
set: function (a) {
this.fy = a;
this.g("FillScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterContourSeriesDescription.prototype, "actualFillScale", {
get: function () {
return this.fx;
},
set: function (a) {
this.fx = a;
this.g("ActualFillScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterContourSeriesDescription.prototype, "valueResolver", {
get: function () {
return this.fv;
},
set: function (a) {
this.fv = a;
this.g("ValueResolver");
},
enumerable: false,
configurable: true
});
ScatterContourSeriesDescription.$t = markType(ScatterContourSeriesDescription, 'ScatterContourSeriesDescription', ScatterTriangulationSeriesDescription.$);
return ScatterContourSeriesDescription;
}(ScatterTriangulationSeriesDescription));
export { ScatterContourSeriesDescription };