From 10b6fde4ba4fb3e11f643413bca1d9501e614fe5 Mon Sep 17 00:00:00 2001 From: Andrew Carr Date: Tue, 31 Aug 2021 10:25:17 +1000 Subject: [PATCH] Add histogram to VictoryThemeDefinition interface --- packages/victory-core/src/index.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/victory-core/src/index.d.ts b/packages/victory-core/src/index.d.ts index f156de9d0..ba5cd8708 100644 --- a/packages/victory-core/src/index.d.ts +++ b/packages/victory-core/src/index.d.ts @@ -429,6 +429,12 @@ export interface VictoryThemeDefinition { labels?: VictoryLabelStyleObject | VictoryLabelStyleObject[]; }; } & VictoryCommonThemeProps; + histogram?: { + style?: { + data?: VictoryStyleObject; + labels?: VictoryLabelStyleObject | VictoryLabelStyleObject[]; + }; + } & VictoryCommonThemeProps; independentAxis?: { style?: { axis?: VictoryStyleObject;