reaviz
Version:
Data Visualization using React
15 lines (13 loc) • 410 B
TypeScript
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>>;