UNPKG

igniteui-react-charts

Version:

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

54 lines (53 loc) 1.83 kB
import { __extends } from "tslib"; import { UnknownValuePlotting_$type } from "igniteui-react-core"; import { IgrPolarLineSeriesBase } from "./igr-polar-line-series-base"; import { PolarLineSeries } from "./PolarLineSeries"; import { ensureEnum } from "igniteui-react-core"; /** * Represents a IgxDataChartComponent polar line series. */ var IgrPolarLineSeries = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrPolarLineSeries, _super); function IgrPolarLineSeries(props) { return _super.call(this, props) || this; } IgrPolarLineSeries.prototype.createImplementation = function () { return new PolarLineSeries(); }; Object.defineProperty(IgrPolarLineSeries.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgrPolarLineSeries.prototype, "isLineOnly", { /** * Gets whether the current series shows only line shapes. */ get: function () { return this.i.fl; }, enumerable: false, configurable: true }); Object.defineProperty(IgrPolarLineSeries.prototype, "unknownValuePlotting", { /** * Determines how unknown values will be plotted on the chart. * Null and Double.NaN are two examples of unknown values. */ get: function () { return this.i.ac6; }, set: function (v) { this.i.ac6 = ensureEnum(UnknownValuePlotting_$type, v); }, enumerable: false, configurable: true }); return IgrPolarLineSeries; }(IgrPolarLineSeriesBase)); export { IgrPolarLineSeries };