igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
86 lines (85 loc) • 3.3 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 { GeographicXYTriangulatingSeriesDescription } from "./GeographicXYTriangulatingSeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
var GeographicContourLineSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GeographicContourLineSeriesDescription, _super);
function GeographicContourLineSeriesDescription() {
var _this = _super.call(this) || this;
_this.ds = null;
_this.dn = null;
_this.dm = null;
_this.dk = null;
_this.dr = null;
return _this;
}
GeographicContourLineSeriesDescription.prototype.get_type = function () {
return "GeographicContourLineSeries";
};
Object.defineProperty(GeographicContourLineSeriesDescription.prototype, "valueMemberPath", {
get: function () {
return this.ds;
},
set: function (a) {
this.ds = a;
this.e("ValueMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicContourLineSeriesDescription.prototype, "fillScale", {
get: function () {
return this.dn;
},
set: function (a) {
this.dn = a;
this.e("FillScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicContourLineSeriesDescription.prototype, "actualFillScale", {
get: function () {
return this.dm;
},
set: function (a) {
this.dm = a;
this.e("ActualFillScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicContourLineSeriesDescription.prototype, "valueResolver", {
get: function () {
return this.dk;
},
set: function (a) {
this.dk = a;
this.e("ValueResolver");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicContourLineSeriesDescription.prototype, "triangulationStatusChangedRef", {
get: function () {
return this.dr;
},
set: function (a) {
this.dr = a;
this.e("TriangulationStatusChangedRef");
},
enumerable: false,
configurable: true
});
GeographicContourLineSeriesDescription.$t = markType(GeographicContourLineSeriesDescription, 'GeographicContourLineSeriesDescription', GeographicXYTriangulatingSeriesDescription.$);
return GeographicContourLineSeriesDescription;
}(GeographicXYTriangulatingSeriesDescription));
export { GeographicContourLineSeriesDescription };