no more fullcrosshair cursor???

19 views (last 30 days)
kscott2k
kscott2k on 30 Mar 2015
Edited: per isakson on 31 Mar 2015
I really liked the fullcrosshair cursor! Why was it removed? Is there a replacement? I had several Matlab GUIs that used full crosshair cursors. What replaced the fullcrosshair cursor?
  3 Comments
kscott2k
kscott2k on 31 Mar 2015
Hi. Thanks for the response. I will look at the solution you pointed out. Thanks for that... I still would like to know why they took away the fullcrosshair and what they suggest to replace it.
per isakson
per isakson on 31 Mar 2015
Edited: per isakson on 31 Mar 2015
I guess they removed it because the implementation was "special" and there were some "issues". For examples, it sometimes left traces in the form of static vertical and horizontal lines. I never found a better way to clear these lines than redrawing the entire figure.

Sign in to comment.

Answers (1)

Image Analyst
Image Analyst on 30 Mar 2015
What function are you talking about? ginput() still has the "cursor" that is full - virtually the whole figure.
  1 Comment
kscott2k
kscott2k on 31 Mar 2015
Hi. Thanks for the response. To illustrate what I mean, look below at what I clipped from Matlab command line...
figure;plot(rand(1,100));
set(gcf,'Pointer','fullcrosshair');
Warning: Full crosshair pointer is no longer supported.
A crosshair pointer will be used instead.
this works below...
set(gcf,'Pointer','arrow');
set(gcf,'Pointer','crosshair');

Sign in to comment.

Categories

Find more on Visual Exploration in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!