reaviz
Version:
Data Visualization using React
33 lines (32 loc) • 695 B
TypeScript
import { FC } from 'react';
export interface LinearValueMarkerProps {
/**
* Color of the marker line.
*/
color: string;
/**
* Value to render the marker at.
*/
value: any;
/**
* CSS class to apply.
*/
className?: string;
/**
* Stroke width of the marker line.
*
* @default 1
*/
thickness?: number;
/**
* Length of the marker line. Set internally by the parent component.
*/
size?: number;
/**
* Direction the marker is drawn in.
*
* @default 'horizontal'
*/
direction?: 'horizontal' | 'vertical';
}
export declare const LinearValueMarker: FC<LinearValueMarkerProps>;