import { SplineType } from "./SplineType"; import { IgrHorizontalAnchoredCategorySeries, IIgrHorizontalAnchoredCategorySeriesProps } from "./igr-horizontal-anchored-category-series"; import { SplineSeriesBase } from "./SplineSeriesBase"; /** * Represents the base class for all IgxDataChartComponent spline series. */ export declare abstract class IgrSplineSeriesBase
extends IgrHorizontalAnchoredCategorySeries
{
/**
* @hidden
*/
get i(): SplineSeriesBase;
constructor(props: P);
/**
* Gets or sets whether to include the spline shape in the axis range requested of the axis.
*/
get isSplineShapePartOfRange(): boolean;
set isSplineShapePartOfRange(v: boolean);
/**
* Gets whether the current series shows an area or line shape.
*/
get isAreaOrLine(): boolean;
/**
* Gets or sets the type of spline to be rendered.
*
* ```ts
* this.series.splineType = SplineType.Clamped;
* ```
*
* ```ts
*