reaviz
Version:
Data Visualization using React
23 lines (22 loc) • 471 B
TypeScript
import { FC } from 'react';
export interface RadialValueMarkerProps {
/**
* Color of the marker circle stroke.
*/
color: string;
/**
* Radius value to render the marker at.
*/
value: number;
/**
* CSS class to apply.
*/
className?: string;
/**
* Stroke width of the marker circle.
*
* @default 1
*/
thickness?: number;
}
export declare const RadialValueMarker: FC<RadialValueMarkerProps>;