UNPKG

igniteui-react-core

Version:
194 lines (193 loc) 6.08 kB
/* 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.h0 = null; _this.hi = null; _this.hx = null; _this.hw = null; _this.hg = null; _this.hk = false; _this.hl = false; _this.hr = 0; _this.hq = 0; _this.hm = false; _this.hy = null; _this.hu = null; _this.hz = null; _this.hv = null; return _this; } BubbleSeriesDescription.prototype.get_type = function () { return "BubbleSeries"; }; Object.defineProperty(BubbleSeriesDescription.prototype, "radiusMemberPath", { get: function () { return this.h0; }, set: function (a) { this.h0 = a; this.j("RadiusMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "radiusScale", { get: function () { return this.hi; }, set: function (a) { this.hi = a; this.j("RadiusScale"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "labelMemberPath", { get: function () { return this.hx; }, set: function (a) { this.hx = a; this.j("LabelMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "fillMemberPath", { get: function () { return this.hw; }, set: function (a) { this.hw = a; this.j("FillMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "fillScale", { get: function () { return this.hg; }, set: function (a) { this.hg = a; this.j("FillScale"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "fillScaleUseGlobalValues", { get: function () { return this.hk; }, set: function (a) { this.hk = a; this.j("FillScaleUseGlobalValues"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "markerOutlineUsesFillScale", { get: function () { return this.hl; }, set: function (a) { this.hl = a; this.j("MarkerOutlineUsesFillScale"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "markerOutlineBrightness", { get: function () { return this.hr; }, set: function (a) { this.hr = a; this.j("MarkerOutlineBrightness"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "markerBrushBrightness", { get: function () { return this.hq; }, set: function (a) { this.hq = a; this.j("MarkerBrushBrightness"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "radiusScaleUseGlobalValues", { get: function () { return this.hm; }, set: function (a) { this.hm = a; this.j("RadiusScaleUseGlobalValues"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "radiusMemberAsLegendLabel", { get: function () { return this.hy; }, set: function (a) { this.hy = a; this.j("RadiusMemberAsLegendLabel"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "fillMemberAsLegendLabel", { get: function () { return this.hu; }, set: function (a) { this.hu = a; this.j("FillMemberAsLegendLabel"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "radiusMemberAsLegendUnit", { get: function () { return this.hz; }, set: function (a) { this.hz = a; this.j("RadiusMemberAsLegendUnit"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "fillMemberAsLegendUnit", { get: function () { return this.hv; }, set: function (a) { this.hv = a; this.j("FillMemberAsLegendUnit"); }, enumerable: false, configurable: true }); BubbleSeriesDescription.$t = markType(BubbleSeriesDescription, 'BubbleSeriesDescription', ScatterBaseDescription.$); return BubbleSeriesDescription; }(ScatterBaseDescription)); export { BubbleSeriesDescription };