Skip to content

Commit

Permalink
[charts][docs] Add missing Heatmap pro icon
Browse files Browse the repository at this point in the history
A quick follow-up on #12047.
  • Loading branch information
oliviertassinari committed Feb 22, 2024
1 parent ba665ca commit 71b34fd
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion docs/data/charts/overview/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ packageName: '@mui/x-charts'
The `@mui/x-charts` is an MIT library for rendering charts relying on [D3.js](https://d3js.org/) for data manipulation and SVG for rendering.
And, like other MUI X components, charts are production-ready components that integrate smoothly into your app.

With a high level of customization, MUI X Charts provides on three levels of customization layers: **single components** with great defaults, extensive **configuration props**, and **subcomponents** for flexible composition.
With a high level of customization, MUI X Charts provides three levels of customization layers: **single components** with great defaults, extensive **configuration props**, and **subcomponents** for flexible composition.
Additionally, you can also use all the [MUI System](https://mui.com/system/getting-started/) tools, such as the theme override or the `sx` prop.

{{"demo": "ChartsOverviewDemo.js", "defaultCodeOpen": true}}
Expand Down
31 changes: 16 additions & 15 deletions docs/src/modules/components/ChartComponentsGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,6 @@ function getComponents() {
srcDark: '/static/x/component-illustrations/gauge-dark.png',
href: '/x/react-charts/gauge/',
},
{
title: 'Heatmap',
srcLight: '/static/x/component-illustrations/heatmap-light.png',
srcDark: '/static/x/component-illustrations/heatmap-dark.png',
href: '/x/react-charts/heat-map/',
planned: true,
},
{
title: 'Radar Chart',
srcLight: '/static/x/component-illustrations/radar-light.png',
Expand All @@ -68,18 +61,18 @@ function getComponents() {
planned: true,
},
{
title: 'Funnel Chart',
srcLight: '/static/x/component-illustrations/funnel-light.png',
srcDark: '/static/x/component-illustrations/funnel-dark.png',
href: '/x/react-charts/funnel/',
title: 'Heatmap',
srcLight: '/static/x/component-illustrations/heatmap-light.png',
srcDark: '/static/x/component-illustrations/heatmap-dark.png',
href: '/x/react-charts/heat-map/',
planned: true,
pro: true,
},
{
title: 'Gantt Chart',
srcLight: '/static/x/component-illustrations/gantt-light.png',
srcDark: '/static/x/component-illustrations/gantt-dark.png',
href: '/x/react-charts/gantt/',
title: 'Funnel Chart',
srcLight: '/static/x/component-illustrations/funnel-light.png',
srcDark: '/static/x/component-illustrations/funnel-dark.png',
href: '/x/react-charts/funnel/',
planned: true,
pro: true,
},
Expand All @@ -91,6 +84,14 @@ function getComponents() {
planned: true,
pro: true,
},
{
title: 'Gantt Chart',
srcLight: '/static/x/component-illustrations/gantt-light.png',
srcDark: '/static/x/component-illustrations/gantt-dark.png',
href: '/x/react-charts/gantt/',
planned: true,
pro: true,
},
];
}

Expand Down

0 comments on commit 71b34fd

Please sign in to comment.