UNPKG

igniteui-react-charts

Version:

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

51 lines (50 loc) 1.6 kB
import { __extends } from "tslib"; import { IgrPolarLineSeriesBase } from "./igr-polar-line-series-base"; import { PolarSplineSeries } from "./PolarSplineSeries"; /** * Represents a IgxDataChartComponent polar spline series. */ var IgrPolarSplineSeries = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrPolarSplineSeries, _super); function IgrPolarSplineSeries(props) { return _super.call(this, props) || this; } IgrPolarSplineSeries.prototype.createImplementation = function () { return new PolarSplineSeries(); }; Object.defineProperty(IgrPolarSplineSeries.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgrPolarSplineSeries.prototype, "isSpline", { /** * Gets whether the current series shows a spline shape. */ get: function () { return this.i.f1; }, enumerable: false, configurable: true }); Object.defineProperty(IgrPolarSplineSeries.prototype, "stiffness", { /** * Gets or sets the Stiffness property. */ get: function () { return this.i.ac6; }, set: function (v) { this.i.ac6 = +v; }, enumerable: false, configurable: true }); return IgrPolarSplineSeries; }(IgrPolarLineSeriesBase)); export { IgrPolarSplineSeries };