igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
86 lines (85 loc) • 3.15 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 ScatterAreaSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ScatterAreaSeriesDescription, _super);
function ScatterAreaSeriesDescription() {
var _this = _super.call(this) || this;
_this.f1 = null;
_this.f6 = null;
_this.f0 = null;
_this.f4 = null;
_this.f5 = null;
return _this;
}
ScatterAreaSeriesDescription.prototype.get_type = function () {
return "ScatterAreaSeries";
};
Object.defineProperty(ScatterAreaSeriesDescription.prototype, "colorScale", {
get: function () {
return this.f1;
},
set: function (a) {
this.f1 = a;
this.j("ColorScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterAreaSeriesDescription.prototype, "colorMemberPath", {
get: function () {
return this.f6;
},
set: function (a) {
this.f6 = a;
this.j("ColorMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterAreaSeriesDescription.prototype, "actualColorScale", {
get: function () {
return this.f0;
},
set: function (a) {
this.f0 = a;
this.j("ActualColorScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterAreaSeriesDescription.prototype, "colorMemberAsLegendLabel", {
get: function () {
return this.f4;
},
set: function (a) {
this.f4 = a;
this.j("ColorMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterAreaSeriesDescription.prototype, "colorMemberAsLegendUnit", {
get: function () {
return this.f5;
},
set: function (a) {
this.f5 = a;
this.j("ColorMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
ScatterAreaSeriesDescription.$t = markType(ScatterAreaSeriesDescription, 'ScatterAreaSeriesDescription', ScatterTriangulationSeriesDescription.$);
return ScatterAreaSeriesDescription;
}(ScatterTriangulationSeriesDescription));
export { ScatterAreaSeriesDescription };