UNPKG

igniteui-react-charts

Version:

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

35 lines (34 loc) 815 B
import { IgrScatterBase } from "./igr-scatter-base"; import { ScatterSplineSeries } from "./ScatterSplineSeries"; /** * Represents a IgxDataChartComponent scatter spline series */ export class IgrScatterSplineSeries extends IgrScatterBase { createImplementation() { return new ScatterSplineSeries(); } /** * @hidden */ get i() { return this._implementation; } constructor(props) { super(props); } /** * Gets whether the current series shows a spline shape. */ get isSpline() { return this.i.f1; } /** * Gets or sets the Stiffness property. */ get stiffness() { return this.i.acz; } set stiffness(v) { this.i.acz = +v; } }