igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
24 lines (23 loc) • 801 B
TypeScript
import { IgrFragmentBase, IIgrFragmentBaseProps } from "./igr-fragment-base";
import { LineFragment } from "./LineFragment";
/**
* Represents one part of a StackedLineSeries.
*/
export declare class IgrLineFragment extends IgrFragmentBase<IIgrLineFragmentProps> {
protected createImplementation(): LineFragment;
/**
* @hidden
*/
get i(): LineFragment;
constructor(props: IIgrLineFragmentProps);
/**
* Gets whether the current series shows only line shapes.
*/
get isLineOnly(): boolean;
/**
* Gets whether the current series shows an area or line shape.
*/
get isAreaOrLine(): boolean;
}
export interface IIgrLineFragmentProps extends IIgrFragmentBaseProps {
}