tooltip

plotly interactive tooltip / hover text / popup

plotly interactive tooltip / hover text / popup Question: Tooltips of a figure are only displayed while hovering over the data point: https://plotly.com/python/hover-text-and-formatting I’d like to have an easy way to customize the duration the tooltip is displayed after hovering over it or possibly display the tooltip permanently when clicking the data point. This will …

Total answers: 2

How to add a tooltip to a customtkinter image (CTkImage)?

How to add a tooltip to a customtkinter image (CTkImage)? Question: I’m using tkinter-tooltip and when I try to add a tooltip to a button consisting of only an image, it says "NoneType’ object has no attribute ‘bind’". It works if I do text=" " but I don’t wanna make the text a space or …

Total answers: 1

How do you add tool tips to buttons in guizero/tkinter?

How do you add tool tips to buttons in guizero/tkinter? Question: I am trying to add tool tips into my Guizero app but I cant seem to combine them correctly. While I’m trying to minimize the amount of libraries I’m using if you can give me something else that works with Guizero that would be …

Total answers: 1

Bokeh Plotting: Enable tooltips for only some glyphs

Bokeh Plotting: Enable tooltips for only some glyphs Question: I have a figure with some glyphs, but only want tooltips to display for certain glyphs. Is there currently a way to accomplish this in Bokeh? Alternatively, is there a way to plot two figures on top of each other? It seems like that would let …

Total answers: 4

Display message when hovering over something with mouse cursor in Python

Display message when hovering over something with mouse cursor in Python Question: I have a GUI made with TKinter in Python. I would like to be able to display a message when my mouse cursor goes, for example, on top of a label or button. The purpose of this is to explain to the user …

Total answers: 8

How do I display tooltips in Tkinter?

How do I display tooltips in Tkinter? Question: Tooltips are those little bits of text that popup when the mouse hovers over a widget for a certain duration of time. How can I add a tooltip message to my tkinter Python application? Asked By: rectangletangle || Source Answers: The Pmw.Balloon class from the Pmw toolkit …

Total answers: 10