@mui/x-charts
Version:
The community edition of the Charts components (MUI X).
36 lines (35 loc) • 1.02 kB
JavaScript
'use client';
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
import _extends from "@babel/runtime/helpers/esm/extends";
const _excluded = ["message"];
import * as React from 'react';
import { styled } from '@mui/material/styles';
import { useDrawingArea } from "../hooks/useDrawingArea.js";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledText = styled('text')(({
theme
}) => _extends({}, theme.typography.body2, {
stroke: 'none',
fill: theme.palette.text.primary,
shapeRendering: 'crispEdges',
textAnchor: 'middle',
dominantBaseline: 'middle'
}));
export function ChartsNoDataOverlay(props) {
const {
message
} = props,
other = _objectWithoutPropertiesLoose(props, _excluded);
const {
top,
left,
height,
width
} = useDrawingArea();
return /*#__PURE__*/_jsx(StyledText, _extends({
x: left + width / 2,
y: top + height / 2
}, other, {
children: message ?? 'No data to display'
}));
}