UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

12 lines (11 loc) 458 B
'use client'; import { useStore } from "../internals/store/useStore.js"; import { selectorChartDataset } from "../internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js"; /** * Get access to the dataset used to populate series and axes data. * @returns {DatasetType | undefined} The dataset array if provided, otherwise undefined. */ export function useDataset() { const store = useStore(); return store.use(selectorChartDataset); }