UNPKG

igniteui-react-charts

Version:

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

24 lines (23 loc) 808 B
import { __extends } from "tslib"; import { IgrPolarBase } from "./igr-polar-base"; /** * Represents the base class from which all IgxDataChartComponent polar line series are derived. */ var IgrPolarLineSeriesBase = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrPolarLineSeriesBase, _super); function IgrPolarLineSeriesBase(props) { return _super.call(this, props) || this; } Object.defineProperty(IgrPolarLineSeriesBase.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); return IgrPolarLineSeriesBase; }(IgrPolarBase)); export { IgrPolarLineSeriesBase };