@gpa-gemstone/react-graph
Version:
Interactive UI Components for GPA products
13 lines (12 loc) • 376 B
TypeScript
import { AxisIdentifier } from './GraphContext';
import { IProps as ILineProps } from './Line';
export interface IProps extends ILineProps {
threshHolds: IThreshold[];
}
export interface IThreshold {
Value: number;
Color: string;
axis?: AxisIdentifier;
}
declare function LineWithThreshold(props: IProps): JSX.Element | null;
export default LineWithThreshold;