igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
298 lines (296 loc) • 10.3 kB
JavaScript
import { __extends } from "tslib";
import { IgrSizeScale } from "./igr-size-scale";
import { IgrBrushScale } from "./igr-brush-scale";
import { IgrScatterBase } from "./igr-scatter-base";
import { BubbleSeries } from "./BubbleSeries";
import { ensureBool } from "igniteui-react-core";
/**
* Represents a IgxDataChartComponent bubble series.
*/
var IgrBubbleSeries = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrBubbleSeries, _super);
function IgrBubbleSeries(props) {
return _super.call(this, props) || this;
}
IgrBubbleSeries.prototype.createImplementation = function () {
return new BubbleSeries();
};
Object.defineProperty(IgrBubbleSeries.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "hasOnlyMarkers", {
/**
* Gets whether the series has only marker as visuals
*/
get: function () {
return this.i.ek;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "isColoredItemwise", {
get: function () {
return this.i.isColoredItemwise;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "radiusMemberPath", {
/**
* Gets or sets the radius mapping property for the current series object.
*/
get: function () {
return this.i.ady;
},
set: function (v) {
this.i.ady = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "radiusScale", {
/**
* Gets or sets the radius size scale for the bubbles.
*/
get: function () {
var r = this.i.acx;
if (r == null) {
return null;
}
if (!r.externalObject) {
var e = IgrSizeScale._createFromInternal(r);
if (e) {
e._implementation = r;
}
r.externalObject = e;
}
return r.externalObject;
},
set: function (v) {
if (v != null && this._stylingContainer && v._styling)
v._styling(this._stylingContainer, this, this);
v == null ? this.i.acx = null : this.i.acx = v.i;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "labelMemberPath", {
/**
* Gets or sets the Label mapping property for the current series object.
*/
get: function () {
return this.i.ado;
},
set: function (v) {
this.i.ado = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "fillMemberPath", {
/**
* Gets or sets the fill mapping property for the current series object.
*/
get: function () {
return this.i.adj;
},
set: function (v) {
this.i.adj = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "fillScale", {
/**
* Gets or sets the brush scale for the fill brush of markers.
*/
get: function () {
var r = this.i.acu;
if (r == null) {
return null;
}
if (!r.externalObject) {
var e = IgrBrushScale._createFromInternal(r);
if (e) {
e._implementation = r;
}
r.externalObject = e;
}
return r.externalObject;
},
set: function (v) {
if (v != null && this._stylingContainer && v._styling)
v._styling(this._stylingContainer, this, this);
v == null ? this.i.acu = null : this.i.acu = v.i;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "fillScaleUseGlobalValues", {
/**
* Gets or sets whether or not the FillScale uses global min/max values of FillMemberPath from multiple series.
* This setting applies only if multiple series are using the same FillScale.
*/
get: function () {
return this.i.ac6;
},
set: function (v) {
this.i.ac6 = ensureBool(v);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "markerOutlineUsesFillScale", {
/**
* Gets or sets whether or not the marker outline should use FillScale like the marker fill does.
* This setting applies only if the current series has a FillScale set and it overrides MarkerOutline setting.
*/
get: function () {
return this.i.ac7;
},
set: function (v) {
this.i.ac7 = ensureBool(v);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "markerOutlineBrightness", {
/**
* Gets or sets brightness of the marker outline. Using negative value will change marker outline to darker color and positive value will change marker outline to brighter color
* Note you can use any values between minimum value of -1 (darkest outline) and maximum value of 1 (brightest outline)
*/
get: function () {
return this.i.add;
},
set: function (v) {
this.i.add = +v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "markerBrushBrightness", {
/**
* Gets or sets brightness of the marker fill. Using negative value will change marker fill to darker color and positive value will change marker fill to brighter color
* Note you can use any values between minimum value of -1 (darkest fill) and maximum value of 1 (brightest fill)
*/
get: function () {
return this.i.adc;
},
set: function (v) {
this.i.adc = +v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "radiusScaleUseGlobalValues", {
/**
* Gets or sets the whether or not the RadiusScale uses global values of RadiusMemberPath from multiple series.
* This setting applies only if multiple series are using the same RadiusScale.
*/
get: function () {
return this.i.ac8;
},
set: function (v) {
this.i.ac8 = ensureBool(v);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "radiusMemberAsLegendLabel", {
/**
* Gets or sets the label displayed before series' radius value in the Data Legend.
*/
get: function () {
return this.i.adu;
},
set: function (v) {
this.i.adu = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "fillMemberAsLegendLabel", {
/**
* Gets or sets the label displayed before series' fill value in the Data Legend.
*/
get: function () {
return this.i.adf;
},
set: function (v) {
this.i.adf = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "radiusMemberAsLegendUnit", {
/**
* Gets or sets the unit displayed after series' radius value in the Data Legend.
*/
get: function () {
return this.i.adw;
},
set: function (v) {
this.i.adw = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrBubbleSeries.prototype, "fillMemberAsLegendUnit", {
/**
* Gets or sets the unit displayed after series' fill value in the Data Legend.
*/
get: function () {
return this.i.adh;
},
set: function (v) {
this.i.adh = v;
},
enumerable: false,
configurable: true
});
IgrBubbleSeries.prototype.findByName = function (name) {
var baseResult = _super.prototype.findByName.call(this, name);
if (baseResult) {
return baseResult;
}
if (this.radiusScale && this.radiusScale.name && this.radiusScale.name == name) {
return this.radiusScale;
}
if (this.fillScale && this.fillScale.name && this.fillScale.name == name) {
return this.fillScale;
}
return null;
};
IgrBubbleSeries.prototype._styling = function (container, component, parent) {
_super.prototype._styling.call(this, container, component, parent);
this._inStyling = true;
if (this.radiusScale && this.radiusScale._styling) {
this.radiusScale._styling(container, component, this);
}
if (this.fillScale && this.fillScale._styling) {
this.fillScale._styling(container, component, this);
}
this._inStyling = false;
};
IgrBubbleSeries.prototype.getItemValue = function (item, memberPathName) {
var iv = this.i.kr(item, memberPathName);
return (iv);
};
/**
* Gets the value of a requested member path from the series.
* @param memberPathName * The property name of a valid member path for the series
*/
IgrBubbleSeries.prototype.getMemberPathValue = function (memberPathName) {
var iv = this.i.mf(memberPathName);
return (iv);
};
return IgrBubbleSeries;
}(IgrScatterBase));
export { IgrBubbleSeries };