UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

13 lines (11 loc) 360 B
'use client'; import { useStore } from "../internals/store/useStore.js"; import { selectorChartId } from "../internals/plugins/corePlugins/useChartId/useChartId.selectors.js"; /** * Get the unique identifier of the chart. * @returns chartId if it exists. */ export function useChartId() { const store = useStore(); return store.use(selectorChartId); }