@mui/x-charts
Version:
The community edition of MUI X Charts components.
12 lines (11 loc) • 338 B
JavaScript
'use client';
import _extends from "@babel/runtime/helpers/esm/extends";
import { useAxisTooltip } from "./useAxisTooltip.js";
/**
* Returns the axes to display in the tooltip and the series item related to them.
*/
export function useAxesTooltip(params) {
return useAxisTooltip(_extends({}, params, {
multipleAxes: true
}));
}