From: Jacco van den Berg <39033624+LeeLenaleee@users.noreply.github.com> Date: Fri, 9 Apr 2021 21:06:18 +0000 (+0200) Subject: Docs/broken link (#8863) X-Git-Tag: v3.1.0~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=735764ac4f394f36b2684fbab973959df43466bf;p=thirdparty%2FChart.js.git Docs/broken link (#8863) * Change tabs from area samples to buttons to switch to be in line with other samples, change linewith of extra line datasets to default instead of 1 to be in line with all other lines in the sampels * fix few broken links in docs --- diff --git a/docs/configuration/interactions.md b/docs/configuration/interactions.md index 38ddb0fd5..32824099b 100644 --- a/docs/configuration/interactions.md +++ b/docs/configuration/interactions.md @@ -1,10 +1,10 @@ # Interactions -Namespace: `options.interaction`, the global interaction configuration is at `Chart.defaults.interaction`. To configure which events trigger chart interactions, see [events](events.md#events). +Namespace: `options.interaction`, the global interaction configuration is at `Chart.defaults.interaction`. To configure which events trigger chart interactions, see [events](#events). | Name | Type | Default | Description | ---- | ---- | ------- | ----------- -| `mode` | `string` | `'nearest'` | Sets which elements appear in the interaction. See [Interaction Modes](modes.md#interaction-modes) for details. +| `mode` | `string` | `'nearest'` | Sets which elements appear in the interaction. See [Interaction Modes](#modes) for details. | `intersect` | `boolean` | `true` | if true, the interaction mode only applies when the mouse position intersects an item on the chart. | `axis` | `string` | `'x'` | Can be set to `'x'`, `'y'`, or `'xy'` to define which directions are used in calculating distances. Defaults to `'x'` for `'index'` mode and `'xy'` in `dataset` and `'nearest'` modes. diff --git a/docs/configuration/tooltip.md b/docs/configuration/tooltip.md index 5f0832d5c..1375f50cb 100644 --- a/docs/configuration/tooltip.md +++ b/docs/configuration/tooltip.md @@ -8,7 +8,7 @@ Namespace: `options.plugins.tooltip`, the global options for the chart tooltips | ---- | ---- | ------- | ----------- | `enabled` | `boolean` | `true` | Are on-canvas tooltips enabled? | `external` | `function` | `null` | See [external tooltip](#external-custom-tooltips) section. -| `mode` | `string` | `interaction.mode` | Sets which elements appear in the tooltip. [more...](interactions/modes.md#interaction-modes). +| `mode` | `string` | `interaction.mode` | Sets which elements appear in the tooltip. [more...](interactions.md#modes). | `intersect` | `boolean` | `interaction.intersect` | If true, the tooltip mode applies only when the mouse position intersects with an element. If false, the mode will be applied at all times. | `position` | `string` | `'average'` | The mode for positioning the tooltip. [more...](#position-modes) | `callbacks` | `object` | | See the [callbacks section](#tooltip-callbacks).