igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
21 lines (20 loc) • 902 B
TypeScript
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<P extends IIgrFragmentBaseProps = IIgrFragmentBaseProps> extends IgrHorizontalAnchoredCategorySeries<P> {
/**
* @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 {
}