question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Tooltips cannot be disabled

See original GitHub issue

I am unable to disable tooltips from appearing when hovering over a chart. This appears to be the same case in the line chart demo as well: http://krispo.github.io/angular-nvd3/#/lineChart

My expectation is that the following will disable tooltips:

$scope.options = {
    chart: {
        tooltips: false
    }
};

Issue Analytics

  • State:closed
  • Created 8 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

8reactions
krispocommented, May 13, 2016

Sorry, to disable tooltip use enabled: false option:

chart: {
  tooltip: {
    enabled: false
  }
}
0reactions
krysthiancommented, Oct 4, 2017

I have multiChart, I tried what did you write here but it disable the tooltip of all charts (it’s three), but I’d like to disable the tooltip of just 2 charts, how can I do it?

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to enable Bootstrap tooltip on disabled button
To trigger tooltip on disabled button by wrapping them in <span> span tag and <div> div tag and then adding 'data-toggle','data-placement' and ' ......
Read more >
How to enable Bootstrap tooltip on disabled button?
As a workaround, you'll want to trigger the tooltip from a wrapper or , ideally made keyboard-focusable using tabindex="0", and override the ...
Read more >
How to Show tooltip on disabled elements and ... - Syncfusion
By default, tooltips will not be displayed on disabled elements. However, you can enable this behavior by using the following steps:.
Read more >
Seriously, how to disable taskbar tooltips? This question keeps
If taskbar tooltips cannot be disabled, at least fix the bug where they keep popping up on the taskbar even though we're not...
Read more >
How to Enable Angular Material Tooltips Over Disabled Buttons
Angular Material tooltips don't show when the host element is disabled. This is due to the tooltip being triggered by the DOM mouseenter...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found