import { UnknownValuePlotting } from "igniteui-react-core"; import { IgrHorizontalAnchoredCategorySeries, IIgrHorizontalAnchoredCategorySeriesProps } from "./igr-horizontal-anchored-category-series"; import { AreaSeries } from "./AreaSeries"; /** * Represents a IgxDataChartComponent area series. * Displays trend over time or ordered categories. * Useful when there are many data points and the order is important. * * The `AreaSeries` class represents a IgxDataChartComponent area series.Displays trend over time or ordered categories. * * Useful when there are many data points and the order is important. * * ```ts * * * * * * * * * * * * * * * ``` */ export declare class IgrAreaSeries extends IgrHorizontalAnchoredCategorySeries { protected createImplementation(): AreaSeries; /** * @hidden */ get i(): AreaSeries; constructor(props: IIgrAreaSeriesProps); /** * Gets whether the current series shows an area or line shape. * * The `IsAreaOrLine` is used to check if the current series shows an area or line shape. */ get isAreaOrLine(): boolean; /** * Gets whether the current series shows an area shape. */ get isArea(): boolean; /** * Determines how unknown values will be plotted on the chart. * Null and Double.NaN are two examples of unknown values. * * The `unknownValuePlotting` property is used to determines how unknown values will be plotted on the chart. * * Null and Double.NaN are two examples of unknown values. * * ```ts * * * * * * * * * * * * * * * ``` * * ```ts * series.unknownValuePlotting = UnknownValuePlotting.LinearInterpolate; * ``` */ get unknownValuePlotting(): UnknownValuePlotting; set unknownValuePlotting(v: UnknownValuePlotting); } export interface IIgrAreaSeriesProps extends IIgrHorizontalAnchoredCategorySeriesProps { /** * Determines how unknown values will be plotted on the chart. * Null and Double.NaN are two examples of unknown values. * * The `unknownValuePlotting` property is used to determines how unknown values will be plotted on the chart. * * Null and Double.NaN are two examples of unknown values. * * ```ts * * * * * * * * * * * * * * * ``` * * ```ts * series.unknownValuePlotting = UnknownValuePlotting.LinearInterpolate; * ``` */ unknownValuePlotting?: UnknownValuePlotting | string; }