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.ht = null; _this.hb = null; _this.hq = null; _this.hp = null; _this.g9 = null; _this.hd = false; _this.he = false; _this.hk = 0; _this.hj = 0; _this.hf = false; _this.hr = null; _this.hn = null; _this.hs = null; _this.ho = null; return _this; } BubbleSeriesDescription.prototype.get_type = function () { return "BubbleSeries"; }; Object.defineProperty(BubbleSeriesDescription.prototype, "radiusMemberPath", { get: function () { return this.ht; }, set: function (a) { this.ht = a; this.g("RadiusMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "radiusScale", { get: function () { return this.hb; }, set: function (a) { this.hb = a; this.g("RadiusScale"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "labelMemberPath", { get: function () { return this.hq; }, set: function (a) { this.hq = a; this.g("LabelMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "fillMemberPath", { get: function () { return this.hp; }, set: function (a) { this.hp = a; this.g("FillMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "fillScale", { get: function () { return this.g9; }, set: function (a) { this.g9 = a; this.g("FillScale"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "fillScaleUseGlobalValues", { get: function () { return this.hd; }, set: function (a) { this.hd = a; this.g("FillScaleUseGlobalValues"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "markerOutlineUsesFillScale", { get: function () { return this.he; }, set: function (a) { this.he = a; this.g("MarkerOutlineUsesFillScale"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "markerOutlineBrightness", { get: function () { return this.hk; }, set: function (a) { this.hk = a; this.g("MarkerOutlineBrightness"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "markerBrushBrightness", { get: function () { return this.hj; }, set: function (a) { this.hj = a; this.g("MarkerBrushBrightness"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "radiusScaleUseGlobalValues", { get: function () { return this.hf; }, set: function (a) { this.hf = a; this.g("RadiusScaleUseGlobalValues"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "radiusMemberAsLegendLabel", { get: function () { return this.hr; }, set: function (a) { this.hr = a; this.g("RadiusMemberAsLegendLabel"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "fillMemberAsLegendLabel", { get: function () { return this.hn; }, set: function (a) { this.hn = a; this.g("FillMemberAsLegendLabel"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "radiusMemberAsLegendUnit", { get: function () { return this.hs; }, set: function (a) { this.hs = a; this.g("RadiusMemberAsLegendUnit"); }, enumerable: false, configurable: true }); Object.defineProperty(BubbleSeriesDescription.prototype, "fillMemberAsLegendUnit", { get: function () { return this.ho; }, set: function (a) { this.ho = a; this.g("FillMemberAsLegendUnit"); }, enumerable: false, configurable: true }); BubbleSeriesDescription.$t = markType(BubbleSeriesDescription, 'BubbleSeriesDescription', ScatterBaseDescription.$); return BubbleSeriesDescription; }(ScatterBaseDescription)); export { BubbleSeriesDescription };