Clear Filters
Clear Filters

Datacursormode

2 views (last 30 days)
Manu MJ
Manu MJ on 28 Oct 2011
Dear friends,
I have created many sub axes(grids) in the figure window.
When i set the datacursormode on, instead of showing the value of the graph where I point, it shows the position of the sub axes which is under the plotted graph.
What best I can do to over come this problem.
Please suggest me. Thanks in advance.
Your's Friend Manu MJ

Answers (1)

Fangjun Jiang
Fangjun Jiang on 28 Oct 2011
What is "sub axes (grids)"? Do you mean subplot? Or did you actually plot the grid lines? I don't see problem in this example.
f=figure(1);
s1=subplot(2,1,1);
plot(1:10);grid on;
s2=subplot(2,1,2);
plot(magic(3));grid on;
datacursormode on;
  2 Comments
Manu MJ
Manu MJ on 31 Oct 2011
It's not like this, In a figure window there is only one figure. I have created small grids in the figure window manually. Instead of showing position of the graph, datacursor is showing the position of the small grids which i had created.
Fangjun Jiang
Fangjun Jiang on 31 Oct 2011
That is the problem. MATLAB treat your "graph" and the grid lines that you drawn the same as the curves in the figure. Why do you need to drawn the grid lines? The grid on is not good enough? If that is the case, you may just have to move your cursor very carefully to point to the data points on your "graph", not on the grid lines.

Sign in to comment.

Categories

Find more on Specifying Target for Graphics Output in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!