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 { IgrScatterBase } from "./igr-scatter-base"; import { ScatterSplineSeries } from "./ScatterSplineSeries"; /** * Represents a IgxDataChartComponent scatter spline series */ var IgrScatterSplineSeries = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrScatterSplineSeries, _super); function IgrScatterSplineSeries(props) { return _super.call(this, props) || this; } IgrScatterSplineSeries.prototype.createImplementation = function () { return new ScatterSplineSeries(); }; Object.defineProperty(IgrScatterSplineSeries.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgrScatterSplineSeries.prototype, "isSpline", { /** * Gets whether the current series shows a spline shape. */ get: function () { return this.i.f1; }, enumerable: false, configurable: true }); Object.defineProperty(IgrScatterSplineSeries.prototype, "stiffness", { /** * Gets or sets the Stiffness property. */ get: function () { return this.i.acz; }, set: function (v) { this.i.acz = +v; }, enumerable: false, configurable: true }); return IgrScatterSplineSeries; }(IgrScatterBase)); export { IgrScatterSplineSeries };