UNPKG

igniteui-react-charts

Version:

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

38 lines (37 loc) 1.24 kB
import { __extends } from "tslib"; import { IgrPolarBase } from "./igr-polar-base"; import { PolarScatterSeries } from "./PolarScatterSeries"; /** * Represents a IgxDataChartComponent polar scatter series. */ var IgrPolarScatterSeries = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrPolarScatterSeries, _super); function IgrPolarScatterSeries(props) { return _super.call(this, props) || this; } IgrPolarScatterSeries.prototype.createImplementation = function () { return new PolarScatterSeries(); }; Object.defineProperty(IgrPolarScatterSeries.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgrPolarScatterSeries.prototype, "hasOnlyMarkers", { /** * Gets whether the series has only marker as visuals */ get: function () { return this.i.ek; }, enumerable: false, configurable: true }); return IgrPolarScatterSeries; }(IgrPolarBase)); export { IgrPolarScatterSeries };