Fixed tooltips in bar charts

This commit is contained in:
Alejandro Celaya
2021-09-18 12:07:05 +02:00
parent 6780aa623b
commit 039a56f410
4 changed files with 77 additions and 53 deletions

View File

@@ -14,6 +14,7 @@ const pickKeyFromPair = ([ key ]: StatsRow) => key;
const pickValueFromPair = ([ , value ]: StatsRow) => value;
interface SortableBarGraphProps extends DefaultChartProps {
title: Function | string;
sortingItems: Record<string, string>;
withPagination?: boolean;
extraHeaderContent?: Function;