This release adds a new user option button in the user options menu to toggle tooltip visibility in all charts bearing tooltips.
By default, this button is visible.
It can be hidden from the config by setting userOptions.buttons.tooltip
to false
As for all other buttons, content can be customized using the #optionTooltip slot
<VueUiDonut :config="config" :dataset="dataset">
<template #optionTooltip> TOGGLE TOOLTIP </template>
</VueUiDonut>
The toggleTooltip
method is also exposed, should you wish to build your own custom user options menu (check out customization examples here to see how to setup a custom menu).