UNPKG

@mui/x-charts

Version:

The community edition of the Charts components (MUI X).

19 lines (18 loc) 775 B
/** * Applies the zoom into the scale range. * It changes the screen coordinates that the scale covers. * Not the data that is displayed. * * @param scaleRange the original range in real screen coordinates. * @param zoomRange the zoom range in percentage. * @returns zoomed range in real screen coordinates. */ export const zoomScaleRange = (scaleRange, zoomRange) => { const rangeGap = scaleRange[1] - scaleRange[0]; const zoomGap = zoomRange[1] - zoomRange[0]; // If current zoom show the scale between p1 and p2 percents // The range should be extended by adding [0, p1] and [p2, 100] segments const min = scaleRange[0] - zoomRange[0] * rangeGap / zoomGap; const max = scaleRange[1] + (100 - zoomRange[1]) * rangeGap / zoomGap; return [min, max]; };