From ca48ba14ed9aec521567035d5620264f9bb83596 Mon Sep 17 00:00:00 2001 From: rohrbachan <38455159+rohrbachan@users.noreply.github.com> Date: Fri, 17 Aug 2018 09:36:36 +0200 Subject: [PATCH] Add missing colors prop in Pie Chart index.d.ts the property colors?: string[] was missing in the typescript definitions --- src/components/Charts/Pie/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Charts/Pie/index.d.ts b/src/components/Charts/Pie/index.d.ts index 46e4600d..66c93eeb 100644 --- a/src/components/Charts/Pie/index.d.ts +++ b/src/components/Charts/Pie/index.d.ts @@ -2,6 +2,7 @@ import * as React from 'react'; export interface IPieProps { animate?: boolean; color?: string; + colors?: string[]; height: number; hasLegend?: boolean; padding?: [number, number, number, number]; -- GitLab