Skip to content

Commit

Permalink
[charts][docs] Fix 301 redirection in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Nov 17, 2024
1 parent 4cced68 commit 23646d8
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion docs/pages/x/api/charts/bar-chart-pro.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"description": "{ x?: 'band'<br>&#124;&nbsp;'line'<br>&#124;&nbsp;'none', y?: 'band'<br>&#124;&nbsp;'line'<br>&#124;&nbsp;'none' }"
},
"seeMoreLink": {
"url": "https://mui.com/x/react-charts/highlighting",
"url": "https://mui.com/x/react-charts/highlighting/",
"text": "highlighting docs"
}
},
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/x/api/charts/bar-chart.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"description": "{ x?: 'band'<br>&#124;&nbsp;'line'<br>&#124;&nbsp;'none', y?: 'band'<br>&#124;&nbsp;'line'<br>&#124;&nbsp;'none' }"
},
"seeMoreLink": {
"url": "https://mui.com/x/react-charts/highlighting",
"url": "https://mui.com/x/react-charts/highlighting/",
"text": "highlighting docs"
}
},
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/x/api/charts/line-chart-pro.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"default": "{ x: 'line' }",
"seeMoreLink": {
"url": "https://mui.com/x/react-charts/highlighting",
"url": "https://mui.com/x/react-charts/highlighting/",
"text": "highlighting docs"
}
},
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/x/api/charts/line-chart.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"default": "{ x: 'line' }",
"seeMoreLink": {
"url": "https://mui.com/x/react-charts/highlighting",
"url": "https://mui.com/x/react-charts/highlighting/",
"text": "highlighting docs"
}
},
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/x/api/charts/scatter-chart-pro.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"default": "{ x: 'none', y: 'none' }",
"seeMoreLink": {
"url": "https://mui.com/x/react-charts/highlighting",
"url": "https://mui.com/x/react-charts/highlighting/",
"text": "highlighting docs"
}
},
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/x/api/charts/scatter-chart.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"default": "{ x: 'none', y: 'none' }",
"seeMoreLink": {
"url": "https://mui.com/x/react-charts/highlighting",
"url": "https://mui.com/x/react-charts/highlighting/",
"text": "highlighting docs"
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/x-charts-pro/src/BarChartPro/BarChartPro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ BarChartPro.propTypes = {
* The configuration of axes highlight.
* Default is set to 'band' in the bar direction.
* Depends on `layout` prop.
* @see See {@link https://mui.com/x/react-charts/highlighting highlighting docs} for more details.
* @see See {@link https://mui.com/x/react-charts/highlighting/ highlighting docs} for more details.
*/
axisHighlight: PropTypes.shape({
x: PropTypes.oneOf(['band', 'line', 'none']),
Expand Down
2 changes: 1 addition & 1 deletion packages/x-charts-pro/src/LineChartPro/LineChartPro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ LineChartPro.propTypes = {
// ----------------------------------------------------------------------
/**
* The configuration of axes highlight.
* @see See {@link https://mui.com/x/react-charts/highlighting highlighting docs} for more details.
* @see See {@link https://mui.com/x/react-charts/highlighting/ highlighting docs} for more details.
* @default { x: 'line' }
*/
axisHighlight: PropTypes.shape({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ ScatterChartPro.propTypes = {
// ----------------------------------------------------------------------
/**
* The configuration of axes highlight.
* @see See {@link https://mui.com/x/react-charts/highlighting highlighting docs} for more details.
* @see See {@link https://mui.com/x/react-charts/highlighting/ highlighting docs} for more details.
* @default { x: 'none', y: 'none' }
*/
axisHighlight: PropTypes.shape({
Expand Down
4 changes: 2 additions & 2 deletions packages/x-charts/src/BarChart/BarChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export interface BarChartProps
* The configuration of axes highlight.
* Default is set to 'band' in the bar direction.
* Depends on `layout` prop.
* @see See {@link https://mui.com/x/react-charts/highlighting highlighting docs} for more details.
* @see See {@link https://mui.com/x/react-charts/highlighting/ highlighting docs} for more details.
*
*/
axisHighlight?: ChartsAxisHighlightProps;
Expand Down Expand Up @@ -150,7 +150,7 @@ BarChart.propTypes = {
* The configuration of axes highlight.
* Default is set to 'band' in the bar direction.
* Depends on `layout` prop.
* @see See {@link https://mui.com/x/react-charts/highlighting highlighting docs} for more details.
* @see See {@link https://mui.com/x/react-charts/highlighting/ highlighting docs} for more details.
*/
axisHighlight: PropTypes.shape({
x: PropTypes.oneOf(['band', 'line', 'none']),
Expand Down
4 changes: 2 additions & 2 deletions packages/x-charts/src/LineChart/LineChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export interface LineChartProps
grid?: Pick<ChartsGridProps, 'vertical' | 'horizontal'>;
/**
* The configuration of axes highlight.
* @see See {@link https://mui.com/x/react-charts/highlighting highlighting docs} for more details.
* @see See {@link https://mui.com/x/react-charts/highlighting/ highlighting docs} for more details.
* @default { x: 'line' }
*/
axisHighlight?: ChartsAxisHighlightProps;
Expand Down Expand Up @@ -187,7 +187,7 @@ LineChart.propTypes = {
// ----------------------------------------------------------------------
/**
* The configuration of axes highlight.
* @see See {@link https://mui.com/x/react-charts/highlighting highlighting docs} for more details.
* @see See {@link https://mui.com/x/react-charts/highlighting/ highlighting docs} for more details.
* @default { x: 'line' }
*/
axisHighlight: PropTypes.shape({
Expand Down
4 changes: 2 additions & 2 deletions packages/x-charts/src/ScatterChart/ScatterChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export interface ScatterChartProps
tooltip?: ChartsTooltipProps<'scatter'>;
/**
* The configuration of axes highlight.
* @see See {@link https://mui.com/x/react-charts/highlighting highlighting docs} for more details.
* @see See {@link https://mui.com/x/react-charts/highlighting/ highlighting docs} for more details.
* @default { x: 'none', y: 'none' }
*/
axisHighlight?: ChartsAxisHighlightProps;
Expand Down Expand Up @@ -157,7 +157,7 @@ ScatterChart.propTypes = {
// ----------------------------------------------------------------------
/**
* The configuration of axes highlight.
* @see See {@link https://mui.com/x/react-charts/highlighting highlighting docs} for more details.
* @see See {@link https://mui.com/x/react-charts/highlighting/ highlighting docs} for more details.
* @default { x: 'none', y: 'none' }
*/
axisHighlight: PropTypes.shape({
Expand Down

0 comments on commit 23646d8

Please sign in to comment.