@devinit/pdf-base
Version:
for creating DI print pdfs
21 lines (20 loc) • 545 B
TypeScript
/// <reference types="react" />
import { ILegend, ILabeling } from '../../atoms/Chart/types';
export interface Props {
config: {
circular: {
label: string;
value: string;
innerRadius?: number;
strokeWidth?: number;
strokeColor?: string;
};
labeling?: ILabeling;
legend?: ILegend;
};
callback?: (elm: HTMLElement) => void;
data: any[];
height: string;
}
declare const _default: (props: Props) => JSX.Element;
export default _default;