UNPKG

reaviz

Version:

Data Visualization using React

14 lines (13 loc) 409 B
import { FC } from 'react'; import { ChartShallowDataShape } from '../../../common/data'; export interface RadialGaugeValueLabelProps { /** * Data set by the `RadialGaugeSeries` component. */ data: ChartShallowDataShape; /** * Classname to apply to the value label. */ className?: any; } export declare const RadialGaugeValueLabel: FC<Partial<RadialGaugeValueLabelProps>>;