Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'upstream/next' into add-gauge
  • Loading branch information
alexfauquette committed Feb 15, 2024
commit e0973c40307bd9eafcf6bc2b3cb42c77dff85338
2 changes: 1 addition & 1 deletion docs/data/pages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ const pages: MuiPage[] = [
pathname: '/x/react-charts-future',
subheader: 'Future components',
children: [
{ pathname: '/x/react-charts/heat-map', title: 'Heat map', planned: true },
{ pathname: '/x/react-charts/heat-map', title: 'Heatmap', planned: true },
{ pathname: '/x/react-charts/radar', title: 'Radar', planned: true },
{ pathname: '/x/react-charts/tree-map', title: 'Tree map', planned: true },
{ pathname: '/x/react-charts/funnel', title: 'Funnel', plan: 'pro', planned: true },
Expand Down
54 changes: 48 additions & 6 deletions docs/src/modules/components/ChartComponentsGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,54 @@ function components() {
srcDark: '/static/x/component-illustrations/sparkline-dark.png',
href: '/x/react-charts/sparkline/',
},
// {
// title: 'Gauge',
// srcLight: '/static/x/component-illustrations/gauge-light.png',
// srcDark: '/static/x/component-illustrations/gauge-dark.png',
// href: '/x/react-charts/gauge/',
// },
{
title: 'Gauge',
srcLight: '/static/x/component-illustrations/gauge-light.png',
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',
srcDark: '/static/x/component-illustrations/radar-dark.png',
href: '/x/react-charts/radar/',
planned: true,
},
{
title: 'Treemap',
srcLight: '/static/x/component-illustrations/treemap-light.png',
srcDark: '/static/x/component-illustrations/treemap-dark.png',
href: '/x/react-charts/tree-map/',
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/',
planned: 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,
},
{
title: 'Sankey Chart',
srcLight: '/static/x/component-illustrations/sankey-light.png',
srcDark: '/static/x/component-illustrations/sankey-dark.png',
href: '/x/react-charts/sankey/',
planned: true,
},
];
}

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.