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.dw = null;
_this.d1 = null;
_this.dv = null;
_this.dz = null;
_this.d0 = null;
return _this;
}
ScatterAreaSeriesDescription.prototype.get_type = function () {
return "ScatterAreaSeries";
};
Object.defineProperty(ScatterAreaSeriesDescription.prototype, "colorScale", {
get: function () {
return this.dw;
},
set: function (a) {
this.dw = a;
this.e("ColorScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterAreaSeriesDescription.prototype, "colorMemberPath", {
get: function () {
return this.d1;
},
set: function (a) {
this.d1 = a;
this.e("ColorMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterAreaSeriesDescription.prototype, "actualColorScale", {
get: function () {
return this.dv;
},
set: function (a) {
this.dv = a;
this.e("ActualColorScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterAreaSeriesDescription.prototype, "colorMemberAsLegendLabel", {
get: function () {
return this.dz;
},
set: function (a) {
this.dz = a;
this.e("ColorMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ScatterAreaSeriesDescription.prototype, "colorMemberAsLegendUnit", {
get: function () {
return this.d0;
},
set: function (a) {
this.d0 = a;
this.e("ColorMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
ScatterAreaSeriesDescription.$t = markType(ScatterAreaSeriesDescription, 'ScatterAreaSeriesDescription', ScatterTriangulationSeriesDescription.$);
return ScatterAreaSeriesDescription;
}(ScatterTriangulationSeriesDescription));
export { ScatterAreaSeriesDescription };