import { IgPoint } from "igniteui-react-core"; import { IgrHorizontalAnchoredCategorySeries, IIgrHorizontalAnchoredCategorySeriesProps } from "./igr-horizontal-anchored-category-series"; import { FragmentBase } from "./FragmentBase"; /** * Represents one part of a stacked series. */ export declare abstract class IgrFragmentBase
extends IgrHorizontalAnchoredCategorySeries
{ /** * @hidden */ get i(): FragmentBase; constructor(props: P); /** * Gets whether the current series is a stack fragment. */ get isFragment(): boolean; getSeriesValuePosition(world: IgPoint, useInterpolation: boolean, skipUnknowns: boolean): IgPoint; } export interface IIgrFragmentBaseProps extends IIgrHorizontalAnchoredCategorySeriesProps { }