reaviz
Version:
Data Visualization using React
37 lines (36 loc) • 697 B
TypeScript
import { FC } from 'react';
export interface VennOuterLabelProps {
/**
* The internal data object built by venn.js
*/
data: any;
/**
* Font size of the text.
*
* @default 14
*/
fontSize?: number;
/**
* Font family of the text.
*
* @default 'sans-serif'
*/
fontFamily?: string;
/**
* Fill of the text.
*
* @default '#000'
*/
fill?: string;
/**
* Whether the chart is animated or not.
*
* @default true
*/
animated?: boolean;
/**
* Format label.
*/
format?: (data: any) => any;
}
export declare const VennOuterLabel: FC<Partial<VennOuterLabelProps>>;