igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
35 lines (34 loc) • 1.24 kB
JavaScript
import { __extends } from "tslib";
import { IgrStackedAreaSeries } from "./igr-stacked-area-series";
import { Stacked100AreaSeries } from "./Stacked100AreaSeries";
/**
* Represents a stacked area series, where values are presented as percentages of the total.
*/
var IgrStacked100AreaSeries = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrStacked100AreaSeries, _super);
function IgrStacked100AreaSeries(props) {
return _super.call(this, props) || this;
}
IgrStacked100AreaSeries.prototype.createImplementation = function () {
return new Stacked100AreaSeries();
};
Object.defineProperty(IgrStacked100AreaSeries.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrStacked100AreaSeries.prototype, "isPercentBased", {
get: function () {
return this.i.abh;
},
enumerable: false,
configurable: true
});
return IgrStacked100AreaSeries;
}(IgrStackedAreaSeries));
export { IgrStacked100AreaSeries };