Questions tagged [tooltip]
The tooltip tag has no summary.
91 questions
3
votes
1
answer
99
views
How to preserve tooltips for SVG Maps created by Mathematica?
I want to produce an SVG map by Mathematica that preserves tooltips that are in Mathematica so that they are also in the SVG. The problem is that the tooltips do not export.
Here is an example:
That ...
2
votes
1
answer
103
views
Why does the Tooltip fail on last data point when "None" is used twice?
The following code produces a ListPlot correctly, except that the tooltip does not work for the last data point.
...
2
votes
2
answers
199
views
Plotting root locus - how to display 'k' values on the curve?
I'm trying to plot the root locus for the function below. Is there any way to make it display the value of 'k' when I move the cursor along the curve, similar to a tooltip?
...
1
vote
0
answers
75
views
How to generate a tooltip showing the Information of selected symbol?
Other editors/IDEs often provide the tooltip functionality that when hovering over a variable, the information will be popped up.
For example, in VSCode.
Is it possible to simulate this in ...
0
votes
0
answers
91
views
Change Location of Tooltip
The following code produces a tooltip for the string "parabola":
...
5
votes
3
answers
339
views
How to incorporate ResourceFunctions to autocomplete
Edit: As mentioned in the comments below, typing just ResourceFunction["Mo"] results in a list of ResourceFunctions that have a name that starts with Mo. This is good enough for me although ...
4
votes
1
answer
133
views
Making Tooltips Work with Buttons in 3D Plots
I am trying to get buttons to work simultaneously with tooltips in 3D plots. Button has a Tooltip option, but it doesn't seem to ...
5
votes
1
answer
134
views
How to make Tooltip work with Quantity?
When I execute the code below:
Tooltip[Quantity[1, "Month"], "how to make it works?"]
The tooltip that is automatically generated by ...
1
vote
1
answer
186
views
Using Mathematica, can the contents of a tooltip be written to the paste buffer?
I have an application where tooltips are used to give information on each of a graphical array of objects. I subsequently want to use the content of the tooltip to create any particular object of ...
1
vote
2
answers
189
views
How to use Manipulate to place `Tooltip` for each data point on a ListPlot with a varying Linear Regression line
I want to build on an already developed Code given in:
https://mathematica.stackexchange.com/a/183401/60365
For easy implementation, I applied it to a sample of 10 ...
0
votes
1
answer
127
views
Can a plotted graph be included with a Tooltip?
I have a set of spectral training data for 2 thousand plus colors. Right now each color can be compared with a result a ListLinePlot made to show both on a graph with RMSE. I would like to be able ...
1
vote
1
answer
92
views
Tooltip how to rename more than one equation
Manual shows renaming of one equation in Tooltip. If you have multiple equations in a single plot, how can I rename each equation?? Having Tooltip display lengthy equations if of little value, ...
4
votes
1
answer
340
views
Tooltip for BarChart
I'm not looking for something super fancy, but just getting BarChart to show X value and Y value seems to be challenging to get. Here's a toy example.
data = {{"Data 1", -10.}, {"Data 2&...
0
votes
1
answer
115
views
How to make Mathematica output updated Graphics inside Manipulate?
I have created a code to get information about countries. I created a tooltip to identify cities on a graphics but when I go through the popup menu and click another country, the code doesn't ...
4
votes
1
answer
165
views
Permanently labeling events on a stock DateListPlot, perhaps using ToolTip?
I would like to add notes to specific days on a DateListPlot of a stock price, and have them always be visible (not just on mouseover). So far I've got how to add a tooltip to a specific day, but not ...
0
votes
0
answers
68
views
Tooltip with user defined function
How can I evaluate in a pointlist
ListPlot[Tooltip[RandomReal[{0,1},{5,2}]]]
for example the product of the point coordinate values?
I tried ...
7
votes
1
answer
164
views
Change the Tooltip of DistributionChart
DistributionChart automatically puts a Tooltip on the elements of the chart, which shows the Min, 25%, Median, 75% and Max of the data. I would like to add the count of how many elements are in the ...
5
votes
1
answer
254
views
No values shown in histogram with "mouse-over"
Today I experienced a strange behavior in a histogram I made. Here a MWE:
Given a set of points:
pts = RandomReal[1, {1000, 2}];
and a helper function which ...
1
vote
1
answer
117
views
Tooltip does not work with Plot and Table [closed]
Suppose one has some values and some names:
values = {1.5, 2.2, 5.5};
names = {"label1", "label2", "label3"};
We now define linear functions using these ...
12
votes
0
answers
344
views
Is Tooltip broken in MMA 11.1.1?
Bug introduced in 11.1.0 and persisting through 11.2.0
I have just discovered that Tooltip works differently from as described in the documentation, at least in my ...
4
votes
3
answers
440
views
Identify color at each pixel in an image and show as tooltip
Is it somehow possible to recognize the color at each pixel in an image and show this color as a tooltip?
For example, with this picture:
I found a solution that uses ...
2
votes
1
answer
220
views
Tooltips of data points in DateListPlot render dates as real numbers
Last year (in V10.x) I created a DateListPlot of commodity price data. I used Tooltip to display the date and the data value ...
1
vote
1
answer
127
views
How do I add tooltips to a palette?
The CreatingPalettes help file shows how to create a palette with special symbols:
...
6
votes
2
answers
338
views
Tooltipping Histograms: what's in the bin?
Question
Suppose you have two sets of data where each value has an associated label of some kind and for whatever reason you wish to histogram them. How can you use ...
6
votes
2
answers
463
views
How do I display the numeric value of a curve with Tooltip?
Using Tooltip, is it possible to display the numeric value of the curve I've plotted using Plot and ...