UNPKG

igniteui-react-charts

Version:

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

42 lines (41 loc) 1.4 kB
import { __extends } from "tslib"; import { IgrRingSeriesBase } from "./igr-ring-series-base"; import { HierarchicalRingSeries } from "./HierarchicalRingSeries"; /** * Represents a * IgxDoughnutChartComponent hierarchical series. */ var IgrHierarchicalRingSeries = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrHierarchicalRingSeries, _super); function IgrHierarchicalRingSeries(props) { return _super.call(this, props) || this; } IgrHierarchicalRingSeries.prototype.createImplementation = function () { return new HierarchicalRingSeries(); }; Object.defineProperty(IgrHierarchicalRingSeries.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgrHierarchicalRingSeries.prototype, "childrenMemberPath", { /** * Gets or sets the property name that contains the children items collection. */ get: function () { return this.i.et; }, set: function (v) { this.i.et = v; }, enumerable: false, configurable: true }); return IgrHierarchicalRingSeries; }(IgrRingSeriesBase)); export { IgrHierarchicalRingSeries };