UNPKG

igniteui-react-charts

Version:

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

38 lines (37 loc) 1.32 kB
import { __extends } from "tslib"; import { IgrHorizontalStackedSeriesBase } from "./igr-horizontal-stacked-series-base"; import { StackedLineSeries } from "./StackedLineSeries"; /** * Represents a stacked series, where the points in each series are connected with a line. */ var IgrStackedLineSeries = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrStackedLineSeries, _super); function IgrStackedLineSeries(props) { return _super.call(this, props) || this; } IgrStackedLineSeries.prototype.createImplementation = function () { return new StackedLineSeries(); }; Object.defineProperty(IgrStackedLineSeries.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgrStackedLineSeries.prototype, "isLineOnly", { /** * Gets whether the current series shows only line shapes. */ get: function () { return this.i.fl; }, enumerable: false, configurable: true }); return IgrStackedLineSeries; }(IgrHorizontalStackedSeriesBase)); export { IgrStackedLineSeries };