diff --git a/docs/configuration/legend.md b/docs/configuration/legend.md index 3438c16c0d5..cda19e885f9 100644 --- a/docs/configuration/legend.md +++ b/docs/configuration/legend.md @@ -67,7 +67,7 @@ Namespace: `options.plugins.legend.labels` | `textAlign` | `string` | `'center'` | Horizontal alignment of the label text. Options are: `'left'`, `'right'` or `'center'`. | `usePointStyle` | `boolean` | `false` | Label style will match corresponding point style (size is based on pointStyleWidth or the minimum value between boxWidth and font.size). | `pointStyleWidth` | `number` | `null` | If `usePointStyle` is true, the width of the point style used for the legend. -| `useBorderRadius` | `boolean` | `false` | Label borderRadius will match coresponding borderRadius. +| `useBorderRadius` | `boolean` | `false` | Label borderRadius will match corresponding borderRadius. | `borderRadius` | `number` | `undefined` | Override the borderRadius to use. ## Legend Title Configuration diff --git a/docs/samples/line/point-styling.md b/docs/samples/line/point-styling.md index 717a589a4bd..22f63b3f10a 100644 --- a/docs/samples/line/point-styling.md +++ b/docs/samples/line/point-styling.md @@ -7,7 +7,7 @@ const actions = [ name: 'pointStyle: circle (default)', handler: (chart) => { chart.data.datasets.forEach(dataset => { - dataset.pointStyle = 'cirlce'; + dataset.pointStyle = 'circle'; }); chart.update(); } diff --git a/docs/samples/scale-options/grid.md b/docs/samples/scale-options/grid.md index ff56f2cc8c8..487a1659c05 100644 --- a/docs/samples/scale-options/grid.md +++ b/docs/samples/scale-options/grid.md @@ -42,7 +42,7 @@ const data = { // // Change these settings to change the display for different parts of the X axis -// grid configuiration +// grid configuration const DISPLAY = true; const BORDER = true; const CHART_AREA = true;