ChartsGrid API
API reference docs for the React ChartsGrid component. Learn about the props, CSS, and other APIs of this exported module.
Component demos
Import
import { ChartsGrid } from '@mui/x-charts/ChartsGrid';
// or
import { ChartsGrid } from '@mui/x-charts';
Name | Type | Default | Description |
---|---|---|---|
classes | object | - | Override or extend the styles applied to the component. See CSS API below for more details. |
horizontal | bool | - | Displays horizontal grid. |
vertical | bool | - | Displays vertical grid. |
The component cannot hold a ref.
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 |
---|---|---|
.MuiChartsGrid-horizontalLine | horizontalLine | Styles applied to x-axes. |
.MuiChartsGrid-line | line | Styles applied to every line element. |
.MuiChartsGrid-root | root | Styles applied to the root element. |
.MuiChartsGrid-verticalLine | verticalLine | Styles applied to y-axes. |
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
styleOverrides
property in a custom theme.