import { IgrScatterBase, IIgrScatterBaseProps } from "./igr-scatter-base"; import { ScatterSplineSeries } from "./ScatterSplineSeries"; /** * Represents a IgxDataChartComponent scatter spline series */ export declare class IgrScatterSplineSeries extends IgrScatterBase { protected createImplementation(): ScatterSplineSeries; /** * @hidden */ get i(): ScatterSplineSeries; constructor(props: IIgrScatterSplineSeriesProps); /** * Gets whether the current series shows a spline shape. */ get isSpline(): boolean; /** * Gets or sets the Stiffness property. */ get stiffness(): number; set stiffness(v: number); } export interface IIgrScatterSplineSeriesProps extends IIgrScatterBaseProps { /** * Gets or sets the Stiffness property. */ stiffness?: number | string; }