igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
194 lines (193 loc) • 6.27 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 { ScatterBaseDescription } from "./ScatterBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var BubbleSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(BubbleSeriesDescription, _super);
function BubbleSeriesDescription() {
var _this = _super.call(this) || this;
_this.fj = null;
_this.e1 = null;
_this.fg = null;
_this.ff = null;
_this.ez = null;
_this.e3 = false;
_this.e4 = false;
_this.fa = 0;
_this.e9 = 0;
_this.e5 = false;
_this.fh = null;
_this.fd = null;
_this.fi = null;
_this.fe = null;
return _this;
}
BubbleSeriesDescription.prototype.get_type = function () {
return "BubbleSeries";
};
Object.defineProperty(BubbleSeriesDescription.prototype, "radiusMemberPath", {
get: function () {
return this.fj;
},
set: function (a) {
this.fj = a;
this.e("RadiusMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(BubbleSeriesDescription.prototype, "radiusScale", {
get: function () {
return this.e1;
},
set: function (a) {
this.e1 = a;
this.e("RadiusScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(BubbleSeriesDescription.prototype, "labelMemberPath", {
get: function () {
return this.fg;
},
set: function (a) {
this.fg = a;
this.e("LabelMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(BubbleSeriesDescription.prototype, "fillMemberPath", {
get: function () {
return this.ff;
},
set: function (a) {
this.ff = a;
this.e("FillMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(BubbleSeriesDescription.prototype, "fillScale", {
get: function () {
return this.ez;
},
set: function (a) {
this.ez = a;
this.e("FillScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(BubbleSeriesDescription.prototype, "fillScaleUseGlobalValues", {
get: function () {
return this.e3;
},
set: function (a) {
this.e3 = a;
this.e("FillScaleUseGlobalValues");
},
enumerable: false,
configurable: true
});
Object.defineProperty(BubbleSeriesDescription.prototype, "markerOutlineUsesFillScale", {
get: function () {
return this.e4;
},
set: function (a) {
this.e4 = a;
this.e("MarkerOutlineUsesFillScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(BubbleSeriesDescription.prototype, "markerOutlineBrightness", {
get: function () {
return this.fa;
},
set: function (a) {
this.fa = a;
this.e("MarkerOutlineBrightness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(BubbleSeriesDescription.prototype, "markerBrushBrightness", {
get: function () {
return this.e9;
},
set: function (a) {
this.e9 = a;
this.e("MarkerBrushBrightness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(BubbleSeriesDescription.prototype, "radiusScaleUseGlobalValues", {
get: function () {
return this.e5;
},
set: function (a) {
this.e5 = a;
this.e("RadiusScaleUseGlobalValues");
},
enumerable: false,
configurable: true
});
Object.defineProperty(BubbleSeriesDescription.prototype, "radiusMemberAsLegendLabel", {
get: function () {
return this.fh;
},
set: function (a) {
this.fh = a;
this.e("RadiusMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(BubbleSeriesDescription.prototype, "fillMemberAsLegendLabel", {
get: function () {
return this.fd;
},
set: function (a) {
this.fd = a;
this.e("FillMemberAsLegendLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(BubbleSeriesDescription.prototype, "radiusMemberAsLegendUnit", {
get: function () {
return this.fi;
},
set: function (a) {
this.fi = a;
this.e("RadiusMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
Object.defineProperty(BubbleSeriesDescription.prototype, "fillMemberAsLegendUnit", {
get: function () {
return this.fe;
},
set: function (a) {
this.fe = a;
this.e("FillMemberAsLegendUnit");
},
enumerable: false,
configurable: true
});
BubbleSeriesDescription.$t = markType(BubbleSeriesDescription, 'BubbleSeriesDescription', ScatterBaseDescription.$);
return BubbleSeriesDescription;
}(ScatterBaseDescription));
export { BubbleSeriesDescription };