import { IgPoint } from "igniteui-react-core"; import { IgrSplineSeriesBase, IIgrSplineSeriesBaseProps } from "./igr-spline-series-base"; import { SplineFragmentBase } from "./SplineFragmentBase"; /** * Represents one part in a StackedSplineSeries or StackedSplineAreaSeries. */ export declare abstract class IgrSplineFragmentBase

extends IgrSplineSeriesBase

{ /** * @hidden */ get i(): SplineFragmentBase; constructor(props: P); /** * Gets whether the current series is a stack fragment. */ get isFragment(): boolean; getSeriesValuePosition(world: IgPoint, useInterpolation: boolean, skipUnknowns: boolean): IgPoint; } export interface IIgrSplineFragmentBaseProps extends IIgrSplineSeriesBaseProps { }