vega-tooltip icon indicating copy to clipboard operation
vega-tooltip copied to clipboard

Tooltip Plugin for Vega-Lite

Results 18 vega-tooltip issues
Sort by recently updated
recently updated
newest added

See https://github.com/vega/vega-tooltip/pull/707. We don't have a release in the pull request description since I created the pull request after the deployment already finished.

bug

`import { Handler } from 'vega-tooltip'; const options = { theme: "dark", offsetX: 10, offsetY: 10, disableDefaultStyle: true, styleId: 'vega-tooltip-style' } export default function DataHealthImage(): JSX.Element { return ( }...

The following blocks in https://github.com/vega/vega-tooltip/blob/next/src/formatValue.ts#L19-25 seems pretty problematic for me ```ts if (title) { content += `${valueToHtml(title)}`; } if (image) { content += ``; } ``` doesn't seem to be...

bug

Tooltips disappear as soon as the cursor exits the mark. However, sometimes you may want it to stay while the user is hovering over the tooltip so that they can...

Closes https://github.com/vega/vega-lite/issues/9152 This requires to modify vega-lite as well: https://github.com/vega/vega-lite/pull/9148 cc: @joelostblom @jakevdp @kanitw @domoritz @arvind @jheer

It would be great to be able to specify the preferred vertical and/or horizontal relative position used for the tooltip, if the window width/height allows it. Currently, if the inner...

Update ESLint to version 9 and migrate to flat config format. * **Add `eslint.config.mjs`**: Create a new file `eslint.config.mjs` with the flat config format for ESLint, including necessary plugins, parser...