UNPKG

igniteui-react-charts

Version:

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

28 lines (27 loc) 988 B
import { IgrSplineFragmentBase, IIgrSplineFragmentBaseProps } from "./igr-spline-fragment-base"; import { SplineAreaFragment } from "./SplineAreaFragment"; /** * Represents one part of a StackedSplineAreaSeries. */ export declare class IgrSplineAreaFragment extends IgrSplineFragmentBase<IIgrSplineAreaFragmentProps> { protected createImplementation(): SplineAreaFragment; /** * @hidden */ get i(): SplineAreaFragment; constructor(props: IIgrSplineAreaFragmentProps); /** * 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 a spline shape. */ get isSpline(): boolean; } export interface IIgrSplineAreaFragmentProps extends IIgrSplineFragmentBaseProps { }