import { IgrHorizontalAnchoredCategorySeries, IIgrHorizontalAnchoredCategorySeriesProps } from "./igr-horizontal-anchored-category-series";
import { StepAreaSeries } from "./StepAreaSeries";
/**
* Represents a IgxDataChartComponent step area series.
*
* ```ts
*
*
*
*
*
*
*
* ```
*
* ```ts
* let series = new IgrStepAreaSeries({name:"series1"});
* series.xAxis = this.xAxis;
* series.yAxis = this.yAxis;
* series.valueMemberPath="value";
* this.chart.series.add(series);
* ```
*/
export declare class IgrStepAreaSeries extends IgrHorizontalAnchoredCategorySeries {
protected createImplementation(): StepAreaSeries;
/**
* @hidden
*/
get i(): StepAreaSeries;
constructor(props: IIgrStepAreaSeriesProps);
/**
* Gets whether the current series shows an area or line shape.
*/
get isAreaOrLine(): boolean;
/**
* Gets whether the current series shows an area shape.
*/
get isArea(): boolean;
/**
* Gets whether the current series shows step shapes.
*/
get isStep(): boolean;
/**
* Overridden by derived series classes to indicate when marker-less display is preferred or not.
*/
get isMarkerlessDisplayPreferred(): boolean;
}
export interface IIgrStepAreaSeriesProps extends IIgrHorizontalAnchoredCategorySeriesProps {
}