UNPKG

igniteui-react-charts

Version:

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

24 lines (23 loc) 846 B
import { IgrSplineFragmentBase, IIgrSplineFragmentBaseProps } from "./igr-spline-fragment-base"; import { SplineFragment } from "./SplineFragment"; /** * Represents one part of a StackedSplineSeries. */ export declare class IgrSplineFragment extends IgrSplineFragmentBase<IIgrSplineFragmentProps> { protected createImplementation(): SplineFragment; /** * @hidden */ get i(): SplineFragment; constructor(props: IIgrSplineFragmentProps); /** * Gets whether the current series shows a spline shape. */ get isSpline(): boolean; /** * Gets whether the current series shows an area or line shape. */ get isAreaOrLine(): boolean; } export interface IIgrSplineFragmentProps extends IIgrSplineFragmentBaseProps { }