Skip to content

Commit 4f4606f

Browse files
committed
implement kurkles feedback
1 parent 51fed61 commit 4f4606f

25 files changed

+67
-50
lines changed

docs/docs/axes/_common.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
### Common options to all axes
2-
The common scale configuration can be adjusted in the `options.scales[scaleId]` namespace.
2+
3+
Namespace: `options.scales[scaleId]`
34

45
| Name | Type | Default | Description
56
| ---- | ---- | ------- | -----------

docs/docs/axes/_common_ticks.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
### Common tick options to all axes
2-
The common tick options can be configured in the `options.scales[scaleId].ticks` namespace
2+
3+
Namespace: `options.scales[scaleId].ticks`
34

45
| Name | Type | Scriptable | Default | Description
56
| ---- | ---- | :-------------------------------: | ------- | -----------

docs/docs/axes/cartesian/_common.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
### Common options to all cartesian axes
2-
The common scale configuration can be adjusted in the `options.scales[scaleId]` namespace.
2+
3+
Namespace: `options.scales[scaleId]`
34

45
| Name | Type | Default | Description
56
| ---- | ---- | ------- | -----------

docs/docs/axes/cartesian/_common_ticks.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
### Common tick options to all cartesian axes
2-
The common tick configuration can be adjusted in the `options.scales[scaleId].ticks` namespace.
2+
3+
Namespace: `options.scales[scaleId].ticks`
34

45
| Name | Type | Default | Description
56
| ---- | ---- | ------- | -----------

docs/docs/axes/cartesian/category.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ let chart = new Chart(ctx, {
4545
## Configuration Options
4646

4747
### Category Axis specific options
48-
The category scale specific configuration can be adjusted in the `options.scales[scaleId]` namespace.
48+
49+
Namespace: `options.scales[scaleId]`
4950

5051
| Name | Type | Description
5152
| ---- | ---- | -----------

docs/docs/axes/cartesian/linear.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ The linear scale is used to chart numerical data. It can be placed on either the
1313

1414
### Linear Axis specific options
1515

16+
Namespace: `options.scales[scaleId]`
17+
1618
| Name | Type | Description
1719
| ---- | ---- | -----------
1820
| `beginAtZero` | `boolean` | if true, scale will include 0 if it is not already included.
@@ -23,7 +25,8 @@ The linear scale is used to chart numerical data. It can be placed on either the
2325
## Tick Configuration
2426

2527
### Linear Axis specific options
26-
The linear scale specific configuration can be adjusted in the `options.scales[scaleId]` namespace.
28+
29+
Namespace: `options.scales[scaleId]`
2730

2831
| Name | Type | Default | Description
2932
| ---- | ---- | ------- | -----------

docs/docs/axes/cartesian/logarithmic.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ The logarithmic scale is used to chart numerical data. It can be placed on eithe
1717
## Tick Configuration
1818

1919
### Logarithmic Axis specific options
20-
The logarithmic scale specific configuration can be adjusted in the `options.scales[scaleId]` namespace.
20+
21+
Namespace: `options.scales[scaleId]`
2122

2223
| Name | Type | Default | Description
2324
| ---- | ---- | ------- | -----------

docs/docs/axes/cartesian/time.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ When providing data for the time scale, Chart.js uses timestamps defined as mill
2525
## Configuration Options
2626

2727
### Time Axis specific options
28-
The time scale specific configuration can be adjusted in the `options.scales[scaleId]` namespace.
28+
29+
Namespace: `options.scales[scaleId]`
2930

3031
| Name | Type | Default | Description
3132
| ---- | ---- | ------- | -----------

docs/docs/axes/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ In contrast to the `suggested*` settings, the `min` and `max` settings set expli
6464

6565
There are a number of config callbacks that can be used to change parameters in the scale at different points in the update process. The options are supplied at the top level of the axis options.
6666

67-
The callbacks configuration can be adjusted in the `options.scales[scaleId]` namespace.
67+
Namespace: `options.scales[scaleId]`
6868

6969
| Name | Arguments | Description
7070
| ---- | --------- | -----------

docs/docs/axes/labelling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ When creating a chart, you want to tell the viewer what data they are viewing. T
66

77
## Scale Title Configuration
88

9-
The scale label configuration can be adjusted in the `options.scales[scaleId].scaleLabel` namespace. It defines options for the scale title. Note that this only applies to cartesian axes.
9+
Namespace: `options.scales[scaleId].scaleLabel`, it defines options for the scale title. Note that this only applies to cartesian axes.
1010

1111
| Name | Type | Default | Description
1212
| ---- | ---- | ------- | -----------

0 commit comments

Comments
 (0)