igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
24 lines (23 loc) • 771 B
TypeScript
import { IgrFragmentBase, IIgrFragmentBaseProps } from "./igr-fragment-base";
import { AreaFragment } from "./AreaFragment";
/**
* Represents one part of a StackedAreaSeries.
*/
export declare class IgrAreaFragment extends IgrFragmentBase<IIgrAreaFragmentProps> {
protected createImplementation(): AreaFragment;
/**
* @hidden
*/
get i(): AreaFragment;
constructor(props: IIgrAreaFragmentProps);
/**
* 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;
}
export interface IIgrAreaFragmentProps extends IIgrFragmentBaseProps {
}