UNPKG

reaviz

Version:

Data Visualization using React

34 lines (32 loc) 674 B
import { FC } from 'react'; export interface SunburstArcLabelProps { /** * Id set by the parent. */ id: string; /** * The internal data object built by d3 */ data: any; /** * Fill color for the arc. */ fill: string; /** * Radius of the chart. Set internally by `SunburstChart`. */ radius: number; /** * Font size of the text. */ fontSize?: number; /** * Font family of the text. */ fontFamily?: string; /** * Whether the chart is animated or not. */ animated?: boolean; } export declare const SunburstArcLabel: FC<Partial<SunburstArcLabelProps>>;