DefaultChartsItemTooltipContent API
API reference docs for the React DefaultChartsItemTooltipContent component. Learn about the props, CSS, and other APIs of this exported module.
Demos
Import
import { DefaultChartsItemTooltipContent } from '@mui/x-charts/ChartsTooltip';
// or
import { DefaultChartsItemTooltipContent } from '@mui/x-charts';
// or
import { DefaultChartsItemTooltipContent } from '@mui/x-charts-pro';Learn about the difference by reading this guide on minimizing bundle size.
| Name | Type | Description | 
|---|---|---|
| classes* | object | Override or extend the styles applied to the component. See CSS classes API below for more details.  | 
| getColor* | func | Get the color of the item with index  Signature: function(dataIndex: number) => string
 Returns: The color to display.  | 
| itemData* | { dataIndex?: number, seriesId: number | string, type: 'bar' | 'line' | 'pie' | 'scatter' }  | The data used to identify the triggered item.  | 
| series* | object | The series linked to the triggered axis.  | 
These class names are useful for styling with CSS. They are applied to the component's slots when specific states are triggered.
| Class name | Rule name | Description | 
|---|---|---|
| .MuiDefaultChartsItemTooltipContent-cell | cell | Styles applied to the cell element. | 
| .MuiDefaultChartsItemTooltipContent-labelCell | labelCell | Styles applied to the labelCell element. | 
| .MuiDefaultChartsItemTooltipContent-mark | mark | Styles applied to the mark element. | 
| .MuiDefaultChartsItemTooltipContent-markCell | markCell | Styles applied to the markCell element. | 
| .MuiDefaultChartsItemTooltipContent-paper | paper | Styles applied to the paper element. | 
| .MuiDefaultChartsItemTooltipContent-root | root | Styles applied to the root element. | 
| .MuiDefaultChartsItemTooltipContent-row | row | Styles applied to the row element. | 
| .MuiDefaultChartsItemTooltipContent-table | table | Styles applied to the table element. | 
| .MuiDefaultChartsItemTooltipContent-valueCell | valueCell | Styles applied to the valueCell element. | 
You can override the style of the component using one of these customization options:
- With a global class name.
 - With a rule name as part of the component's 
styleOverridesproperty in a custom theme. 
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.