Skip to content

Commit ca6c970

Browse files
committed
scripts
1 parent 4f35dae commit ca6c970

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

docs/translations/api-docs/charts/axis-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"disableLine": { "description": "If true, the axis line is disabled." },
1515
"disableTicks": { "description": "If true, the ticks are disabled." },
1616
"domainLimit": {
17-
"description": "Defines the axis scale domain based on the min/max values of series linked to it.<br />- &#39;nice&#39;: Rounds the domain at human friendly values.<br />- &#39;strict&#39;: Set the domain to the min/max value provided. No extras space is added.<br />- function: Receives the calculated extremums as parameters, and should return the axis domain."
17+
"description": "Defines the axis scale domain based on the min/max values of series linked to it.<br />- &#39;nice&#39;: Rounds the domain at human friendly values.<br />- &#39;strict&#39;: Set the domain to the min/max value provided. No extra space is added.<br />- function: Receives the calculated extremums as parameters, and should return the axis domain."
1818
},
1919
"fill": { "description": "The fill color of the axis text." },
2020
"height": { "description": "The height of the axis." },

docs/translations/api-docs/charts/radar-series-area/radar-series-area.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"componentDescription": "",
33
"propDescriptions": {
44
"seriesId": {
5-
"description": "The id of the series To display. If undefined all series are display."
5+
"description": "The id of the series to display. If undefined all series are displayed."
66
}
77
},
88
"classDescriptions": {}

docs/translations/api-docs/charts/radar-series-marks/radar-series-marks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"componentDescription": "",
33
"propDescriptions": {
44
"seriesId": {
5-
"description": "The id of the series To display. If undefined all series are display."
5+
"description": "The id of the series to display. If undefined all series are displayed."
66
}
77
},
88
"classDescriptions": {}

docs/translations/api-docs/charts/radar-series-plot/radar-series-plot.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"componentDescription": "",
33
"propDescriptions": {
44
"seriesId": {
5-
"description": "The id of the series To display. If undefined all series are display."
5+
"description": "The id of the series to display. If undefined all series are displayed."
66
}
77
},
88
"classDescriptions": {}

packages/x-charts/src/RadarChart/RadarSeriesPlot/RadarSeriesArea.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ RadarSeriesArea.propTypes = {
3030
// | To update them edit the TypeScript types and run "pnpm proptypes" |
3131
// ----------------------------------------------------------------------
3232
/**
33-
* The id of the series To display.
34-
* If undefined all series are display.
33+
* The id of the series to display.
34+
* If undefined all series are displayed.
3535
*/
3636
seriesId: PropTypes.string,
3737
} as any;

packages/x-charts/src/RadarChart/RadarSeriesPlot/RadarSeriesMarks.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ RadarSeriesMarks.propTypes = {
3434
// | To update them edit the TypeScript types and run "pnpm proptypes" |
3535
// ----------------------------------------------------------------------
3636
/**
37-
* The id of the series To display.
38-
* If undefined all series are display.
37+
* The id of the series to display.
38+
* If undefined all series are displayed.
3939
*/
4040
seriesId: PropTypes.string,
4141
} as any;

packages/x-charts/src/RadarChart/RadarSeriesPlot/RadarSeriesPlot.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ RadarSeriesPlot.propTypes = {
3636
// | To update them edit the TypeScript types and run "pnpm proptypes" |
3737
// ----------------------------------------------------------------------
3838
/**
39-
* The id of the series To display.
40-
* If undefined all series are display.
39+
* The id of the series to display.
40+
* If undefined all series are displayed.
4141
*/
4242
seriesId: PropTypes.string,
4343
} as any;

0 commit comments

Comments
 (0)