igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 2.95 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 GeographicScatterAreaSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GeographicScatterAreaSeriesDescription, _super);
function GeographicScatterAreaSeriesDescription() {
var _this = _super.call(this) || this;
_this.fs = null;
_this.fp = null;
_this.fo = null;
_this.ft = null;
return _this;
}
GeographicScatterAreaSeriesDescription.prototype.get_type = function () {
return "GeographicScatterAreaSeries";
};
Object.defineProperty(GeographicScatterAreaSeriesDescription.prototype, "colorMemberPath", {
get: function () {
return this.fs;
},
set: function (a) {
this.fs = a;
this.j("ColorMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicScatterAreaSeriesDescription.prototype, "colorScale", {
get: function () {
return this.fp;
},
set: function (a) {
this.fp = a;
this.j("ColorScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicScatterAreaSeriesDescription.prototype, "actualColorScale", {
get: function () {
return this.fo;
},
set: function (a) {
this.fo = a;
this.j("ActualColorScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicScatterAreaSeriesDescription.prototype, "triangulationStatusChangedRef", {
get: function () {
return this.ft;
},
set: function (a) {
this.ft = a;
this.j("TriangulationStatusChangedRef");
},
enumerable: false,
configurable: true
});
GeographicScatterAreaSeriesDescription.$t = markType(GeographicScatterAreaSeriesDescription, 'GeographicScatterAreaSeriesDescription', GeographicXYTriangulatingSeriesDescription.$);
return GeographicScatterAreaSeriesDescription;
}(GeographicXYTriangulatingSeriesDescription));
export { GeographicScatterAreaSeriesDescription };