UNPKG

igniteui-react-charts

Version:

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

57 lines (56 loc) 1.74 kB
import { IgrHorizontalAnchoredCategorySeries, IIgrHorizontalAnchoredCategorySeriesProps } from "./igr-horizontal-anchored-category-series"; import { StepAreaSeries } from "./StepAreaSeries"; /** * Represents a IgxDataChartComponent step area series. * * ```ts * <IgrDataChart * dataSource={this.state.dataSource} * width="700px" * height="500px"> * * <IgrCategoryXAxis name="xAxis" label="Year" /> * <IgrNumericYAxis name="yAxis" /> * * <IgrStepAreaSeries * name="series1" * xAxisName="xAxis" * yAxisName="yAxis" * valueMemberPath="value" /> * </IgrDataChart> * ``` * * ```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<IIgrStepAreaSeriesProps> { 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 { }