infocharts
Version:
<img src="https://raw.githubusercontent.com/garethslinn/public_infocharts/refs/heads/main/logo.svg" />
25 lines • 600 B
TypeScript
import React from 'react';
import './styles/infocharts.scss';
interface PieGraphProps {
title?: string;
summary?: string;
source?: string;
data: {
name: string;
value: number;
color: string;
}[];
background?: string;
foreground?: string;
showTable?: boolean;
labelColor?: string;
labelSize?: string;
isFloat?: boolean;
tableName?: string;
tableValue?: string;
patterns?: string[];
isPattern?: boolean;
}
declare const PieGraph: React.FC<PieGraphProps>;
export default PieGraph;
//# sourceMappingURL=PieGraph.d.ts.map