A graphical element which shows the value of another object or variable. "DataTip" is also the name of a debugging tool in Visual Studio. Please specify an additional language tag for context.
Questions tagged [datatip]
27 questions
0
votes
1 answer
Setting different Chart DataTip styles in Flex Components
I have a following issue:My task is to style a datatip for two charts in Flex 4.5.Both charts reside in two different based components which are added to the
So after a thorough research here is what I tried to do.First…

Michael IV
- 11,016
- 12
- 92
- 223
0
votes
1 answer
Matlab: adding a third variable to custom data tips in a 2D plot
I am using Matlab R2020b and I would like to display additional info when hovering the cursor over a data point in a 2D plot. I have values of angle and radius for a polarplot. Each data point is associated with a time. I create the plot similar to…

Crenguta
- 13
- 3
0
votes
0 answers
Matlab bar3 plot no data tip with cursor
I am using the
bar3(...)
command in Matlab (R2018b) to create a 3D barplot. In a normal plot (e.g surf(...), or plot(...)) I get information about values when I hover over them with my cursor. Somehow with the bar3 plot it is not working. I already…

jesus_is_king
- 33
- 4
0
votes
3 answers
LineChart data tip won't display with single data point?
In Flex 3, I have a line chart.
My data provider for the line chart contains only one item.
When I draw the line chart, it plots the point. But it doesn't show the data tip.
It works if more than one item is present in dataprovider.
How can I make a…

user723644
- 31
- 2
0
votes
1 answer
Customize data cursor for 3D objects
Let's say, I have many spheres drawn with surf/mesh function in MATLAB.
I want to display customize data values rather than x,y,z. All values will be different for different spheres and clicking on any point on a particular sphere should display the…

Rohit
- 99
- 2
- 12
0
votes
1 answer
Incorrect datatip label during slow datacursormode callback
It is fairly easy to add a custom datatip
f = figure();
plot( 1:100, sort(rand(100,1)) );
dc = datacursormode( f );
set( dc, 'UpdateFcn', @onDataCursorUpdate );
function txt = onDataCursorUpdate( tip, evt )
txt = {sprintf( 'X: %g',…

Wolfie
- 27,562
- 7
- 28
- 55
0
votes
1 answer
Show datatips in a logarithmically scaled uiaxes
I have encountered a problem using the new uiaxes object: after plotting my data, I can click on the data points then it will show a datatips displaying the X and Y data.
When I change the scale of my X axis into a logarithmic one datatips won't…

oro777
- 1,110
- 1
- 14
- 29
0
votes
2 answers
Scilab 3d Plot Datatips
I am plotting some data in Scilab as 3d-Scatter plot (Scilab 6).
With the datatip toggle it is able to show some information about each data point: x,y,z value.
I am actually plotting node-values, x,y are the coordinates, z is the damage.
Is it…

Sabine
- 1
- 1
0
votes
2 answers
Navigating within Visual Studio DataTip
When a DataTip is open while debugging in Visual Studio it appears the only way to get to a specific object property is scrolling with the mouse.
This can get very cumbersome as some objects can have hundreds of properties and scrolling to a…

Dean Kuga
- 11,878
- 8
- 54
- 108
0
votes
2 answers
Primefaces 5.2 : customize charts datatip
I want to customize the datatip in Primefaces 5.2 charts.
So it means, that I want to change the datatipFormat and the content on it.
It tried this:
--- XHTML ---

Quentame
- 254
- 1
- 4
- 13
0
votes
1 answer
MATLAB Data Cursor Mode
I have a simple class that plots basic x and y data. Within the class I have a method that enables the data cursor mode, customizes the text, and collects and saves the points. I'd like to change the behavior of the method so that I can collect only…

CircAnalyzer
- 610
- 1
- 9
- 29
-1
votes
1 answer
mlpdatacursor not working in jupyter notebooks
When you point your cursor on an image opened in MATLAB, you can see X, Y location and value of that pixel. I wanted to see if similar functionality exists in python.
I came across https://github.com/joferkington/mpldatacursor and figured that I can…

Swati Bhargava
- 1
- 1