datacursor 函数是 的一个属性figure
,因此诀窍是将 datatip 更新函数分配给图形。
将每个球体/图形对象的自定义信息放在其Tag
属性中对于您想要实现的目标是一个好主意。
我们先定义更新函数。保存以下文件datatip_sphere.m
并确保它在 Matlab 路径中可见:
function output_txt = datatip_sphere(~,event_obj)
% Display the tag of the cursor target
% obj Currently not used (empty)
% event_obj Handle to event object
% output_txt Data cursor text string (string or cell array of strings).
output_txt = { event_obj.Target.Tag };
有了这些,现在让我们绘制两个球体并确保光标函数显示您想要的内容:
% retrieve the handle of the figure used for sphere display
% (better than calling 'gca' in datacursormode(hfig)
hfig = figure ;
% Draw your objects
[x,y,z] = sphere;
a=[3 1 3 1] ;
b=[5 6 4 1] ;
s1 = surf(x*a(1,4)+a(1,1),y*a(1,4)+a(1,2),z*a(1,4)+a(1,3),...
'FaceColor', [1 0 0],'FaceLighting','flat','EdgeColor','none','Facealpha',0.5);
hold on
s2 = surf(x*b(1,4)+b(1,1),y*b(1,4)+b(1,2),z*b(1,4)+b(1,3),...
'FaceColor', [0 0 1],'FaceLighting','flat','EdgeColor','none','Facealpha',0.5);
axis equal
% Add a tag to each object
s1.Tag = 'This is sphere 1';
s2.Tag = 'This is sphere 2';
% Now force the figure datatip function to your custom version
dcm = datacursormode(hfig) ;
dcm.UpdateFcn = @datatip_sphere ;
显然,重要的行是最后 4 行,您在其中Tag
为每个图形对象分配一个,特别是最后两行,您将自定义光标更新功能分配给图形。
酷,现在您的数据提示将始终显示分配给对象的名称/标签,无论它们的位置如何: