reaviz
Version:
Data Visualization using React
25 lines (24 loc) • 552 B
TypeScript
import { FC } from 'react';
export interface MarkLineProps {
/**
* Height of the chart. Set internally by the parent component.
*/
height: number;
/**
* X position of the mark line. Set internally by the parent component.
*/
pointX?: number;
/**
* Stroke color of the mark line.
*
* @default '#eee'
*/
strokeColor: string;
/**
* Stroke width of the mark line.
*
* @default 1
*/
strokeWidth: number;
}
export declare const MarkLine: FC<Partial<MarkLineProps>>;