UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

190 lines (185 loc) 6.45 kB
import { __extends } from "tslib"; import { IgrNumericXAxis } from "./igr-numeric-x-axis"; import { IgrCategoryYAxis } from "./igr-category-y-axis"; import { IgrStackedSeriesBase } from "./igr-stacked-series-base"; /** * Base class for stacked series with a numeric x-axis and a category y-axis. */ var IgrVerticalStackedSeriesBase = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrVerticalStackedSeriesBase, _super); function IgrVerticalStackedSeriesBase(props) { var _this = _super.call(this, props) || this; _this._xAxisName = null; _this._yAxisName = null; return _this; } Object.defineProperty(IgrVerticalStackedSeriesBase.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgrVerticalStackedSeriesBase.prototype, "xAxis", { /** * Gets or sets the effective x-axis for the current CategorySeries object. */ get: function () { var r = this.i.xAxis; if (r == null) { return null; } if (!r.externalObject) { var e = IgrNumericXAxis._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.xAxis = null : this.i.xAxis = v.i; }, enumerable: false, configurable: true }); Object.defineProperty(IgrVerticalStackedSeriesBase.prototype, "xAxisName", { /** * Gets or sets the name to use to resolve xAxis from markup. */ get: function () { return this._xAxisName; }, set: function (v) { this._xAxisName = v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrVerticalStackedSeriesBase.prototype, "yAxis", { /** * Gets or sets the effective y-axis for the current CategorySeries object. */ get: function () { var r = this.i.yAxis; if (r == null) { return null; } if (!r.externalObject) { var e = IgrCategoryYAxis._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.yAxis = null : this.i.yAxis = v.i; }, enumerable: false, configurable: true }); Object.defineProperty(IgrVerticalStackedSeriesBase.prototype, "yAxisName", { /** * Gets or sets the name to use to resolve yAxis from markup. */ get: function () { return this._yAxisName; }, set: function (v) { this._yAxisName = v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrVerticalStackedSeriesBase.prototype, "isVertical", { /** * Gets whether or not the current series is vertical series */ get: function () { return this.i.isVertical; }, enumerable: false, configurable: true }); IgrVerticalStackedSeriesBase.prototype.bindAxes = function (axes) { _super.prototype.bindAxes.call(this, axes); for (var i = 0; i < axes.length; i++) { if (this.xAxisName && this.xAxisName.length > 0 && axes[i].name == this.xAxisName) { this.xAxis = axes[i]; } } for (var i = 0; i < axes.length; i++) { if (this.yAxisName && this.yAxisName.length > 0 && axes[i].name == this.yAxisName) { this.yAxis = axes[i]; } } }; IgrVerticalStackedSeriesBase.prototype.findByName = function (name) { var baseResult = _super.prototype.findByName.call(this, name); if (baseResult) { return baseResult; } if (this.xAxis && this.xAxis.name && this.xAxis.name == name) { return this.xAxis; } if (this.yAxis && this.yAxis.name && this.yAxis.name == name) { return this.yAxis; } return null; }; IgrVerticalStackedSeriesBase.prototype._styling = function (container, component, parent) { _super.prototype._styling.call(this, container, component, parent); this._inStyling = true; if (this.xAxis && this.xAxis._styling) { this.xAxis._styling(container, component, this); } if (this.yAxis && this.yAxis._styling) { this.yAxis._styling(container, component, this); } this._inStyling = false; }; /** * Returns the offset value for this series if grouped on a category axis. */ IgrVerticalStackedSeriesBase.prototype.getOffsetValue = function () { var iv = this.i.getOffsetValue(); return (iv); }; /** * Returns the width of the category grouping this series is in. */ IgrVerticalStackedSeriesBase.prototype.getCategoryWidth = function () { var iv = this.i.getCategoryWidth(); return (iv); }; /** * Determine if object can be used as YAxis * @param axis * The object to check */ IgrVerticalStackedSeriesBase.prototype.canUseAsYAxis = function (axis) { var iv = this.i.ab4(axis); return (iv); }; /** * Determine if object can be used as XAxis * @param axis * The object to check */ IgrVerticalStackedSeriesBase.prototype.canUseAsXAxis = function (axis) { var iv = this.i.ab3(axis); return (iv); }; return IgrVerticalStackedSeriesBase; }(IgrStackedSeriesBase)); export { IgrVerticalStackedSeriesBase };