UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

14 lines (12 loc) 317 B
'use client'; import { useChartsContext } from "../context/ChartsProvider/index.mjs"; /** * Get the ref for the chart surface element. * @returns The chart surface ref. */ export function useChartsLayerContainerRef() { const { instance } = useChartsContext(); return instance.chartsLayerContainerRef; }