From 20acb86285d39e825bac76200c9169b2375a691e Mon Sep 17 00:00:00 2001 From: Phillip Kelley-Dotson Date: Thu, 14 Oct 2021 15:05:45 -0700 Subject: [PATCH] add prop to SuperChart for select (#1408) --- packages/superset-ui-core/src/chart/components/SuperChart.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/superset-ui-core/src/chart/components/SuperChart.tsx b/packages/superset-ui-core/src/chart/components/SuperChart.tsx index acad386202..eff0797f6e 100644 --- a/packages/superset-ui-core/src/chart/components/SuperChart.tsx +++ b/packages/superset-ui-core/src/chart/components/SuperChart.tsx @@ -37,6 +37,8 @@ export type Props = Omit & FallbackComponent?: React.ComponentType; /** Event listener for unexpected errors from chart */ onErrorBoundary?: ErrorBoundaryProps['onError']; + /** Prop for form plugins uisng superchart */ + showOverflow?: boolean; /** Chart width */ height?: number | string; /** Chart height */