Skip to content

Commit 724288c

Browse files
authored
Merge branch 'chartjs:master' into colors-plugin
2 parents 9566500 + 005aa45 commit 724288c

31 files changed

+53
-17
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- uses: actions/checkout@v3
34-
- uses: pnpm/[email protected].2
34+
- uses: pnpm/[email protected].4
3535
- name: Use Node.js
3636
uses: actions/setup-node@v3
3737
with:

.github/workflows/compressed-size.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v3
20-
- uses: pnpm/[email protected].2
20+
- uses: pnpm/[email protected].4
2121
- uses: preactjs/compressed-size-action@v2
2222
with:
2323
repo-token: "${{ secrets.GITHUB_TOKEN }}"
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- uses: actions/checkout@v3
29-
- uses: pnpm/[email protected].2
29+
- uses: pnpm/[email protected].4
3030
- uses: andresz1/size-limit-action@master
3131
with:
3232
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- uses: actions/checkout@v3
27-
- uses: pnpm/[email protected].2
27+
- uses: pnpm/[email protected].4
2828
- name: Use Node.js
2929
uses: actions/setup-node@v3
3030
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- uses: actions/checkout@v3
30-
- uses: pnpm/[email protected].2
30+
- uses: pnpm/[email protected].4
3131
- uses: actions/setup-node@v3
3232
with:
3333
registry-url: https://registry.npmjs.org/
@@ -71,7 +71,7 @@ jobs:
7171
if: "!github.event.release.prerelease"
7272
steps:
7373
- uses: actions/checkout@v3
74-
- uses: pnpm/[email protected].2
74+
- uses: pnpm/[email protected].4
7575
- uses: actions/setup-node@v3
7676
with:
7777
registry-url: https://registry.npmjs.org/

docs/configuration/legend.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Namespace: `options.plugins.legend.labels`
6767
| `textAlign` | `string` | `'center'` | Horizontal alignment of the label text. Options are: `'left'`, `'right'` or `'center'`.
6868
| `usePointStyle` | `boolean` | `false` | Label style will match corresponding point style (size is based on pointStyleWidth or the minimum value between boxWidth and font.size).
6969
| `pointStyleWidth` | `number` | `null` | If `usePointStyle` is true, the width of the point style used for the legend.
70-
| `useBorderRadius` | `boolean` | `false` | Label borderRadius will match coresponding borderRadius.
70+
| `useBorderRadius` | `boolean` | `false` | Label borderRadius will match corresponding borderRadius.
7171
| `borderRadius` | `number` | `undefined` | Override the borderRadius to use.
7272

7373
## Legend Title Configuration

docs/configuration/tooltip.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,8 @@ const myPieChart = new Chart(ctx, {
304304
let style = 'background:' + colors.backgroundColor;
305305
style += '; border-color:' + colors.borderColor;
306306
style += '; border-width: 2px';
307-
const span = '<span style="' + style + '"></span>';
308-
innerHtml += '<tr><td>' + span + body + '</td></tr>';
307+
const span = '<span style="' + style + '">' + body + '</span>';
308+
innerHtml += '<tr><td>' + span + '</td></tr>';
309309
});
310310
innerHtml += '</tbody>';
311311

docs/developers/publishing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Publishing an extension
22

3-
If you are planning on publishing an extension for Chart.js, here are a some pointers.
3+
If you are planning on publishing an extension for Chart.js, here are some pointers.
44

55
## Awesome
66

docs/samples/area/line-stacked.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ module.exports = {
173173

174174
## Docs
175175
* [Area](../../charts/area.html)
176-
* [Filling modes](../../charts/area.htmll#filling-modes)
176+
* [Filling modes](../../charts/area.html#filling-modes)
177177
* [Line](../../charts/line.html)
178178
* [Data structures (`labels`)](../../general/data-structures.html)
179179
* [Axes scales](../../axes/)

docs/samples/area/radar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ module.exports = {
142142

143143
## Docs
144144
* [Area](../../charts/area.html)
145-
* [Filling modes](../../charts/area.htmll#filling-modes)
145+
* [Filling modes](../../charts/area.html#filling-modes)
146146
* [`propagate`](../../charts/area.html#propagate)
147147
* [Radar](../../charts/radar.html)
148148
* [Data structures (`labels`)](../../general/data-structures.html)

docs/samples/line/point-styling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const actions = [
77
name: 'pointStyle: circle (default)',
88
handler: (chart) => {
99
chart.data.datasets.forEach(dataset => {
10-
dataset.pointStyle = 'cirlce';
10+
dataset.pointStyle = 'circle';
1111
});
1212
chart.update();
1313
}

0 commit comments

Comments
 (0)