ChartsYAxis API
API reference docs for the React ChartsYAxis component. Learn about the props, CSS, and other APIs of this exported module.
Component demos
Import
import { ChartsYAxis } from '@mui/x-charts/ChartsYAxis';
// or
import { ChartsYAxis } from '@mui/x-charts';
Override or extend the styles applied to the component.
See CSS API below for more details.
Type:object
Defines which ticks are displayed. Its value can be: - 'auto' In such case the ticks are computed based on axis scale and other parameters. - a filtering function of the form (value, index) => boolean
which is available only if the axis has a data property. - an array containing the values where ticks should be displayed.
Type:'auto'
| array
| func
Default:'auto'
Defines which ticks get its label displayed. Its value can be: - 'auto' In such case, labels are displayed if they do not overlap with the previous one. - a filtering function of the form (value, index) => boolean. Warning: the index is tick index, not data ones.
Type:'auto'
| func
Default:'auto'
Maximal step between two ticks. When using time data, the value is assumed to be in ms. Not supported by categorical axis (band, points).
Type:number
Maximal step between two ticks. When using time data, the value is assumed to be in ms. Not supported by categorical axis (band, points).
Type:number
The number of ticks. This number is not guaranted. Not supported by categorical axis (band, points).
Type:number
The following class names are useful for styling with CSS (the state classes are marked).
To learn more, visit the component customization page.
Styles applied to group ingruding the tick and its label.
Rule name:tickContainer
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.