Skip to content

Commit

Permalink
[charts] Share upfront future Pro features
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Sep 25, 2023
1 parent af3749b commit 5fa34f7
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/data/charts/funnel/funnel.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: React Funnel chart
---

# Charts - Funnel 🚧
# Charts - Funnel 🚧[<span class="plan-pro"></span>](/x/introduction/licensing/#pro-plan 'Pro plan')

<p class="description">Funnel charts allows to express quantity evolution along a process, such as audience engagement.</p>

Expand Down
2 changes: 1 addition & 1 deletion docs/data/charts/gantt/gantt.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: React Gantt chart
---

# Charts - Gantt 🚧
# Charts - Gantt 🚧[<span class="plan-pro"></span>](/x/introduction/licensing/#pro-plan 'Pro plan')

<p class="description">Gantt charts can illustrate a product schedule and the relationships between its various activities.</p>

Expand Down
2 changes: 1 addition & 1 deletion docs/data/charts/sankey/sankey.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: React Sankey chart
---

# Charts - Sankey 🚧
# Charts - Sankey 🚧[<span class="plan-pro"></span>](/x/introduction/licensing/#pro-plan 'Pro plan')

<p class="description">Chart lines can express flows between different entities.</p>

Expand Down
8 changes: 4 additions & 4 deletions docs/data/pages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,13 +396,13 @@ const pages: MuiPage[] = [
title: 'API Reference',
children: [...chartsComponentApi],
},
{ pathname: '/x/react-charts/funnel', title: 'Funnel 🚧' },
{ pathname: '/x/react-charts/gantt', title: 'Gantt 🚧' },
{ pathname: '/x/react-charts/gauge', title: 'Gauge 🚧' },
{ pathname: '/x/react-charts/tree-map', title: 'Tree map 🚧' },
{ pathname: '/x/react-charts/heat-map', title: 'Heat map 🚧' },
{ pathname: '/x/react-charts/radar', title: 'Radar 🚧' },
{ pathname: '/x/react-charts/sankey', title: 'Sankey 🚧' },
{ pathname: '/x/react-charts/tree-map', title: 'Tree map 🚧' },
{ pathname: '/x/react-charts/funnel', title: 'Funnel 🚧', plan: 'pro' },
{ pathname: '/x/react-charts/sankey', title: 'Sankey 🚧', plan: 'pro' },
{ pathname: '/x/react-charts/gantt', title: 'Gantt 🚧', plan: 'pro' },
],
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/x/react-charts/funnel.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import * as pageProps from 'docsx/data/charts/funnel/funnel.md?@mui/markdown';

export default function Page() {
return <MarkdownDocs {...pageProps} />;
return <MarkdownDocs {...pageProps} disableAd />;
}
2 changes: 1 addition & 1 deletion docs/pages/x/react-charts/gantt.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import * as pageProps from 'docsx/data/charts/gantt/gantt.md?@mui/markdown';

export default function Page() {
return <MarkdownDocs {...pageProps} />;
return <MarkdownDocs {...pageProps} disableAd />;
}
2 changes: 1 addition & 1 deletion docs/pages/x/react-charts/sankey.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import * as pageProps from 'docsx/data/charts/sankey/sankey.md?@mui/markdown';

export default function Page() {
return <MarkdownDocs {...pageProps} />;
return <MarkdownDocs {...pageProps} disableAd />;
}

0 comments on commit 5fa34f7

Please sign in to comment.