From bb52a692df16489783ff9cbbbe7e9a6da4928aa6 Mon Sep 17 00:00:00 2001 From: Jacco van den Berg Date: Wed, 26 May 2021 17:10:11 +0200 Subject: [PATCH] Update pointstyle type and default value --- docs/charts/bubble.md | 4 ++-- docs/configuration/legend.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/charts/bubble.md b/docs/charts/bubble.md index ef29ad2a1c5..94fb7ebb9ba 100644 --- a/docs/charts/bubble.md +++ b/docs/charts/bubble.md @@ -60,7 +60,7 @@ The bubble chart allows a number of properties to be specified for each dataset. | [`hitRadius`](#interactions) | `number` | Yes | Yes | `1` | [`label`](#general) | `string` | - | - | `undefined` | [`order`](#general) | `number` | - | - | `0` -| [`pointStyle`](#styling) | `string` | Yes | Yes | `'circle'` +| [`pointStyle`](#styling) | `string`\|`Image` | Yes | Yes | `'circle'` | [`rotation`](#styling) | `number` | Yes | Yes | `0` | [`radius`](#styling) | `number` | Yes | Yes | `3` @@ -83,7 +83,7 @@ The style of each bubble can be controlled with the following properties: | `backgroundColor` | bubble background color. | `borderColor` | bubble border color. | `borderWidth` | bubble border width (in pixels). -| `pointStyle` | bubble [shape style](../configuration/elements#point-styles). +| `pointStyle` | bubble [shape style](../configuration/elements.md#point-styles). | `rotation` | bubble rotation (in degrees). | `radius` | bubble radius (in pixels). diff --git a/docs/configuration/legend.md b/docs/configuration/legend.md index f708f30e0bc..771392803ac 100644 --- a/docs/configuration/legend.md +++ b/docs/configuration/legend.md @@ -59,7 +59,7 @@ Namespace: `options.plugins.legend.labels` | `generateLabels` | `function` | | Generates legend items for each thing in the legend. Default implementation returns the text + styling for the color box. See [Legend Item](#legend-item-interface) for details. | `filter` | `function` | `null` | Filters legend items out of the legend. Receives 2 parameters, a [Legend Item](#legend-item-interface) and the chart data. | `sort` | `function` | `null` | Sorts legend items. Receives 3 parameters, two [Legend Items](#legend-item-interface) and the chart data. -| `pointStyle` | | | If specified, this style of point is used for the legend. Only used if `usePointStyle` is true. +| [`pointStyle`](elements.md#point-styles) | `string`\|`Image` | `'circle'` | If specified, this style of point is used for the legend. Only used if `usePointStyle` is true. | `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 the minimum value between boxWidth and font.size).