fybdp-d3-kg
Version:
Knowledge Graph using React and D3.js
17 lines (16 loc) • 534 B
TypeScript
import { PureComponent } 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 class RadialGaugeValueLabel extends PureComponent<RadialGaugeValueLabelProps> {
static defaultProps: Partial<RadialGaugeValueLabelProps>;
render(): JSX.Element;
}