view m-toolbox/classes/+utils/@plottools/datacursormode.m @ 20:d58813ab1b92 database-connection-manager

Update ltpda_uo.submit
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
line source



function output_txt = datacursormode(obj, event_obj)
% Display the position of the data cursor
% obj          Currently not used (empty)
% event_obj    Handle to event object
% output_txt   Data cursor text string (string or cell array of strings).

t0 = get(get(get(event_obj, 'Target'), 'Parent'), 'UserData');

pos = get(event_obj,'Position');

output_txt = {['X: ',char(t0 + pos(1))],...
    ['Y: ',num2str(pos(2),4)]};

% If there is a Z-coordinate in the position, display it as well
if length(pos) > 2
    output_txt{end+1} = ['Z: ',num2str(pos(3),4)];
end

output_txt{end+1} = ['x-value: ', num2str(pos(1),4)];