PieChart API
API reference docs for the React PieChart component. Learn about the props, CSS, and other APIs of this exported module.
Demos
Import
import { PieChart } from '@mui/x-charts/PieChart';
// or
import { PieChart } from '@mui/x-charts';
// or
import { PieChart } from '@mui/x-charts-pro';
Learn about the difference by reading this guide on minimizing bundle size.
Props of the native component are also available.
Name | Type | Default | Description |
---|---|---|---|
series* | Array<object> | - | The series to display in the pie chart. An array of PieSeriesType objects. |
colors | Array<string> | func | rainbowSurgePalette | Color palette used to colorize multiple series. |
dataset | Array<object> | - | An array of objects that can be used to populate series and axes data using their |
height | number | - | The height of the chart in px. If not defined, it takes the height of the parent element. |
hideLegend | bool | - | If |
highlightedItem | { dataIndex?: number, seriesId: number | string } | - | The highlighted item. Used when the highlight is controlled. |
id | string | - | This prop is used to help implement the accessibility logic. If you don't provide this prop. It falls back to a randomly generated id. |
loading | bool | false | If |
margin | { bottom?: number, left?: number, right?: number, top?: number } | - | The margin between the SVG and the drawing area. It's used for leaving some space for extra information such as the x- and y-axis or legend. Accepts an object with the optional properties: |
onHighlightChange | func | - | The callback fired when the highlighted item changes. Signature: function(highlightedItem: HighlightItemData | null) => void
|
onItemClick | func | - | Callback fired when a pie arc is clicked. |
skipAnimation | bool | - | If |
slotProps | object | {} | The props used for each component slot. |
slots | object | {} | Overridable component slots. See Slots API below for more details. |
width | number | - | The width of the chart in px. If not defined, it takes the width of the parent element. |
ref
is forwarded to the root element.Slot name | Class name | Default component | Description |
---|---|---|---|
legend | ChartsLegend | Custom rendering of the legend. | |
loadingOverlay | ChartsLoadingOverlay | Overlay component rendered when the chart is in a loading state. | |
noDataOverlay | ChartsNoDataOverlay | Overlay component rendered when the chart has no data to display. | |
pieArc | |||
pieArcLabel | |||
tooltip | ChartsTooltipRoot | Custom component for the tooltip popper. |
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.