recharts
Version:
React charts
17 lines (16 loc) • 454 B
TypeScript
/**
* Styling presets for Recharts components.
* The theme can be used to customize the appearance of charts, including colors, fonts, and other visual properties.
*
* @experimental
*/
export interface RechartsTheme {
grid: Partial<{
stroke: string;
strokeOpacity: number;
strokeWidth: number;
strokeDasharray: string | number | ReadonlyArray<number>;
fillOpacity: number;
fill: string;
}>;
}