diff --git a/src/line-chart/index.tsx b/src/line-chart/index.tsx index 7977c2be73..13c10b0f09 100644 --- a/src/line-chart/index.tsx +++ b/src/line-chart/index.tsx @@ -22,7 +22,17 @@ function LineChart({ emphasizeBaselineAxis = true, ...props }: LineChartProps) { - const baseComponentProps = useBaseComponent('LineChart'); + const baseComponentProps = useBaseComponent('LineChart', { + props: { + detailPopoverSize, + emphasizeBaselineAxis, + fitHeight: props.fitHeight, + hideFilter: props.hideFilter, + hideLegend: props.hideLegend, + xScaleType, + yScaleType, + }, + }); const baseProps = getBaseProps(props); const className = clsx(baseProps.className, styles.root);