Skip to content

Commit 0407099

Browse files
authored
chore: Change cartesian and pie chart metric names (#164)
1 parent 6ec5a08 commit 0407099

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cartesian-chart/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const CartesianChart = forwardRef(
3636
const tooltip = transformTooltip(props.tooltip);
3737
const legend = transformLegend(props.legend);
3838

39-
const baseComponentProps = useBaseComponent("CartesianChart", {
39+
const baseComponentProps = useBaseComponent("CartesianHighcharts", {
4040
props: { fitHeight, inverted, stacking, emphasizeBaseline, verticalAxisTitlePlacement },
4141
metadata: {},
4242
});

src/pie-chart/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const PieChart = forwardRef(({ fitHeight = false, ...props }: PieChartProps, ref
2020
const tooltip = transformTooltip(props.tooltip);
2121
const legend = transformLegend(props.legend);
2222

23-
const baseComponentProps = useBaseComponent("PieChart", { props: { fitHeight } });
23+
const baseComponentProps = useBaseComponent("PieHighcharts", { props: { fitHeight } });
2424

2525
return (
2626
<InternalPieChart

0 commit comments

Comments
 (0)