UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

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