[WEB-3035] chore: add labels to treemap chart (#6313)

This commit is contained in:
Prateek Shourya
2025-01-03 20:03:11 +05:30
committed by GitHub
parent 2622dd691c
commit c1407daa47
2 changed files with 4 additions and 1 deletions

View File

@@ -35,6 +35,7 @@ export type TStackedBarChartProps<K extends string, T extends string> = {
export type TreeMapItem = {
name: string;
value: number;
label?: string;
textClassName?: string;
icon?: React.ReactElement;
} & (