@mui/x-charts
Version:
The community edition of MUI X Charts components.
14 lines (12 loc) • 492 B
JavaScript
/** Margin in the opposite direction of the axis, i.e., horizontal if the axis is vertical and vice versa. */
export const ZOOM_SLIDER_MARGIN = 4;
/** Size reserved for the zoom slider. The actual size of the slider might be smaller. */
export const DEFAULT_ZOOM_SLIDER_SIZE = 20 + 2 * ZOOM_SLIDER_MARGIN;
export const DEFAULT_ZOOM_SLIDER_SHOW_TOOLTIP = 'hover';
/** Default margin for pie charts. */
export const DEFAULT_PIE_CHART_MARGIN = {
top: 5,
bottom: 5,
left: 5,
right: 5
};