@mui/x-charts
Version:
The community edition of MUI X Charts components.
18 lines (17 loc) • 420 B
JavaScript
;
'use client';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.useChartRootRef = useChartRootRef;
var _ChartsProvider = require("../context/ChartsProvider");
/**
* Get the ref for the root chart element.
* @returns The root chart element ref.
*/
function useChartRootRef() {
const {
instance
} = (0, _ChartsProvider.useChartsContext)();
return instance.chartRootRef;
}