Skip to contentSkip to content

BarRangePlot API

API reference docs for the React BarRangePlot component. Learn about the props, CSS, and other APIs of this exported module.

Demos

Import

import { BarRangePlot } from '@mui/x-charts/BarChart';
// or
import { BarRangePlot } from '@mui/x-charts';
// or
import { BarRangePlot } from '@mui/x-charts-pro';
// or
import { BarRangePlot } from '@mui/x-charts-premium';

Learn about the difference by reading this guide on minimizing bundle size.

Props

NameTypeDefaultDescription
borderRadiusnumber-

Defines the border radius of the bar element.

onItemClickfunc-

Callback fired when a bar item is clicked.

Signature:function(event: React.MouseEvent<SVGElement, MouseEvent>, barItemIdentifier: BarItemIdentifier) => void
  • event The event source of the callback.
  • barItemIdentifier The bar item identifier.
skipAnimationboolundefined

If true, animations are skipped.

slotPropsobject{}

The props used for each component slot.

slotsobject{}

Overridable component slots.

See Slots API below for more details.

The component cannot hold a ref.

Slots

Slot nameClass nameDefault componentDescription
barBarElementPathThe component that renders the bar.
barLabelBarLabelThe component that renders the bar label.

Source code

If you did not find the information in this page, consider having a look at the implementation of the component for more detail.