Migration from v7 to v8
This guide describes the changes needed to migrate Charts from v7 to v8.
Introduction
This is a reference guide for upgrading @mui/x-charts
from v7 to v8.
The change between v7 and v8 is mostly here to match the version with other MUI X packages.
No big breaking changes are expected.
Start using the new release
In package.json
, change the version of the charts package to next
.
-"@mui/x-charts": "^7.0.0",
+"@mui/x-charts": "next",
Using next
ensures that it will always use the latest v8 pre-release version, but you can also use a fixed version, like 8.0.0-alpha.0
.
Breaking changes
Since v8 is a major release, it contains some changes that affect the public API. These changes were done for consistency, improve stability and make room for new features. Below are described the steps you need to make to migrate from v7 to v8.
Run codemods
The preset-safe
codemod will automatically adjust the bulk of your code to account for breaking changes in v8. You can run v8.0.0/charts/preset-safe
targeting only Charts or v8.0.0/preset-safe
to target the other packages as well.
You can either run it on a specific file, folder, or your entire codebase when choosing the <path>
argument.
// Charts specific
npx @mui/x-codemod@latest v8.0.0/charts/preset-safe <path>
// Target the other packages as well
npx @mui/x-codemod@latest v8.0.0/preset-safe <path>
Breaking changes that are handled by this codemod are denoted by a ✅ emoji in the table of contents on the right side of the screen.
If you have already applied the v8.0.0/charts/preset-safe
(or v8.0.0/preset-safe
) codemod, then you should not need to take any further action on these items.
All other changes must be handled manually.
Series properties renaming
Some properties got deprecated in v7 in favor of a more consistent naming convention. Those deprecated properties got removed in v8.
The impacted properties are:
- The
xAxisKey
,yAxisKey
, andzAxisKey
are renamedxAxisId
,yAxisId
, andzAxisId
. - The
highlighted
andfaded
properties ofseries.highlightScope
are renamedhighlight
andfade
.
Legend props propagation ✅
The legend
props of charts single components got removed.
To pass props to the legend, use the slotProps.legend
.
- <PieChart legend={{ ... }} />
+ <PieChart slotProps={{ legend: { ... } }} />
Removing ResponsiveChartContainer ✅
The ResponsiveChartContainer
got removed.
You can now use ChartContainer
as a responsive container which works now exactly the same way.
- import { ResponsiveChartContainer } from '@mui/x-charts/ResponsiveChartContainer';
- import { ResponsiveChartContainerPro } from '@mui/x-charts-pro/ResponsiveChartContainerPro';
+ import { ChartContainer } from '@mui/x-charts/ResponsiveChartContainer';
+ import { ChartContainerPro } from '@mui/x-charts-pro/ResponsiveChartContainerPro';
- <ResponsiveChartContainer>
+ <ChartContainer>
<BarPlot />
- </ResponsiveChartContainer>
+ </ChartContainer>
New DOM structure for ChartContainer
The <ChartContainer />
now wrap the svg
component into a div
.
This change should not impact your codebase except for some CSS selector edge cases.
Remove Pie Chart axes
The <PieChart />
got by error the code to render axes.
This code is removed in v8, which implies removing the following props: axisHighlight
, topAxis
, rightAxis
, bottomAxis
, and leftAxis
.
This should not impact your code. If you used axes in a pie chart please open an issue, we would be curious to get more information about the use-case.