Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/configuration/legend.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/samples/line/point-styling.md
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down
2 changes: 1 addition & 1 deletion docs/samples/scale-options/grid.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const data = {

// <block:config:0>
// 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;
Expand Down