From 1fa4f9597fec4f21caf306bddffc013018dde54d Mon Sep 17 00:00:00 2001 From: Maarten Mulders Date: Mon, 5 Mar 2018 20:55:11 +0100 Subject: [PATCH] [recharts] Add 'fill' prop to Bar component --- types/recharts/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/recharts/index.d.ts b/types/recharts/index.d.ts index 5de42776b9..0bccedc017 100644 --- a/types/recharts/index.d.ts +++ b/types/recharts/index.d.ts @@ -189,6 +189,7 @@ export interface BarData { export interface BarProps extends EventAttributes, Partial, Animatable { dataKey: DataKey; // As the source code states, dataKey will replace valueKey in 1.1.0 and it'll be required (it's already required in current implementation). className?: string; + fill?: string; layout?: LayoutType; xAxisId?: string | number; yAxisId?: string | number;