@mui/x-charts
Version:
The community edition of MUI X Charts components.
14 lines (12 loc) • 297 B
JavaScript
'use client';
import { useChartsContext } from "../context/ChartsProvider/index.mjs";
/**
* Get the ref for the root chart element.
* @returns The root chart element ref.
*/
export function useChartRootRef() {
const {
instance
} = useChartsContext();
return instance.chartRootRef;
}