@mui/x-charts
Version:
The community edition of MUI X Charts components.
147 lines (143 loc) • 5.07 kB
JavaScript
'use client';
import _extends from "@babel/runtime/helpers/esm/extends";
import clsx from 'clsx';
import { useTheme } from '@mui/material/styles';
import { useTicks } from "../hooks/useTicks.mjs";
import { useRadiusAxis, useRotationAxis } from "../hooks/useAxis.mjs";
import { useChartsContext } from "../context/ChartsProvider/index.mjs";
import { selectorChartPolarCenter } from "../internals/plugins/featurePlugins/useChartPolarAxis/index.mjs";
import { useUtilityClasses } from "./chartsRadiusAxisClasses.mjs";
import { createGetLabelTextAnchors } from "./createGetLabelTextAnchors.mjs";
import { getLabelTransform } from "./getLabelTransform.mjs";
/* Gap between a tick and its label. */
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
const TICK_LABEL_GAP = 3;
const getLabelTextAnchors = createGetLabelTextAnchors(getLabelTransform);
/**
* Get the angle to use to display the radius axis.
* @param position The position props
* @param rotationAxis The default rotation axis
* @returns the angle in radians to use.
*/
function getAxisAngleInRadians(position, rotationAxis) {
if (position === 'start') {
return rotationAxis?.scale.range()[0] ?? 0;
}
if (position === 'end') {
return rotationAxis?.scale.range()[1] ?? 0;
}
if (typeof position === 'number') {
return position * Math.PI / 180;
}
return 0;
}
export function ChartsRadiusAxis(props) {
const radiusAxis = useRadiusAxis(props.axisId);
const settings = _extends({}, radiusAxis, props);
const {
position = 'start',
disableLine,
disableTicks,
tickLabelPosition: tickLabelPositionProp = 'auto',
tickPosition = position === 'start' ? 'before' : 'after',
tickSize = 6,
className,
classes: classesProp
} = settings;
let tickLabelPosition = tickLabelPositionProp;
if (tickLabelPosition === 'auto') {
tickLabelPosition = position === 'start' ? 'before' : 'after';
}
const isCentered = tickLabelPosition === 'center';
const classes = useUtilityClasses({
classes: classesProp,
isCentered
});
const theme = useTheme();
const {
store
} = useChartsContext();
const {
cx,
cy
} = store.use(selectorChartPolarCenter);
const rotationAxis = useRotationAxis();
const ticks = useTicks({
scale: radiusAxis.scale,
tickNumber: radiusAxis?.tickNumber ?? 5,
tickInterval: radiusAxis?.tickInterval,
tickSpacing: radiusAxis?.tickSpacing,
valueFormatter: radiusAxis?.valueFormatter,
direction: 'radius'
});
if (!radiusAxis || settings.position === 'none') {
return null;
}
const angle = getAxisAngleInRadians(position, rotationAxis);
// Convert "0 = up" convention to SVG math angle (0 = right, clockwise y-down).
const dx = Math.sin(angle);
const dy = -Math.cos(angle);
// Perpendicular offset for tick marks (rotated 90° clockwise).
const px = -dy;
const py = dx;
const [innerRadius, outerRadius] = radiusAxis.scale.range();
const stroke = (theme.vars ?? theme).palette.text.primary;
const tickDx = (tickPosition === 'after' ? 1 : -1) * px * tickSize;
const tickDy = (tickPosition === 'after' ? 1 : -1) * py * tickSize;
const tickLabelGap = isCentered ? 0 : TICK_LABEL_GAP;
const tickLabelGapDx = (tickLabelPosition === 'after' ? 1 : -1) * px * tickLabelGap;
const tickLabelGapDy = (tickLabelPosition === 'after' ? 1 : -1) * py * tickLabelGap;
return /*#__PURE__*/_jsxs("g", {
className: clsx(classes.root, className),
children: [!disableLine && /*#__PURE__*/_jsx("line", {
x1: cx + dx * innerRadius,
y1: cy + dy * innerRadius,
x2: cx + dx * outerRadius,
y2: cy + dy * outerRadius,
stroke: stroke,
className: classes.line
}), ticks.map(({
offset: radius,
labelOffset,
formattedValue
}, index) => {
if (!formattedValue) {
return null;
}
const tickX = cx + dx * radius;
const tickY = cy + dy * radius;
// Compute the label position.
let labelX = cx + dx * (radius + labelOffset);
let labelY = cy + dy * (radius + labelOffset);
if (tickLabelGap !== 0) {
labelX += tickLabelGapDx;
labelY += tickLabelGapDy;
}
if (!isCentered && tickLabelPosition === tickPosition && !disableTicks) {
// Add the size of the tick if they are in the same direction.
labelX += tickDx;
labelY += tickDy;
}
return /*#__PURE__*/_jsxs("g", {
className: classes.tickContainer,
children: [!disableTicks && /*#__PURE__*/_jsx("line", {
x1: tickX,
y1: tickY,
x2: tickX + tickDx,
y2: tickY + tickDy,
stroke: stroke,
className: classes.tick
}), /*#__PURE__*/_jsx("text", _extends({
x: labelX,
y: labelY,
fill: stroke,
fontSize: 12,
className: classes.tickLabel,
pointerEvents: "none"
}, getLabelTextAnchors(dx, dy, tickLabelPosition), {
children: formattedValue
}))]
}, index);
})]
});
}