UNPKG

@mui/x-charts

Version:

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

25 lines 502 B
import _extends from "@babel/runtime/helpers/esm/extends"; const defaultZoomOptions = { minStart: 0, maxEnd: 100, step: 5, minSpan: 10, maxSpan: 100, panning: true, filterMode: 'keep' }; export const defaultizeZoom = (zoom, axisId, axisDirection) => { if (!zoom) { return undefined; } if (zoom === true) { return _extends({ axisId, axisDirection }, defaultZoomOptions); } return _extends({ axisId, axisDirection }, defaultZoomOptions, zoom); };