UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

17 lines (16 loc) 480 B
"use strict"; 'use client'; Object.defineProperty(exports, "__esModule", { value: true }); exports.useChartId = useChartId; var _useStore = require("../internals/store/useStore"); var _useChartId = require("../internals/plugins/corePlugins/useChartId/useChartId.selectors"); /** * Get the unique identifier of the chart. * @returns chartId if it exists. */ function useChartId() { const store = (0, _useStore.useStore)(); return store.use(_useChartId.selectorChartId); }