UNPKG

igniteui-react-charts

Version:

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

23 lines (22 loc) 634 B
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. */ export class IgrStacked100AreaSeries extends IgrStackedAreaSeries { createImplementation() { return new Stacked100AreaSeries(); } /** * @hidden */ get i() { return this._implementation; } constructor(props) { super(props); } get isPercentBased() { return this.i.abh; } }