Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个在光标位置创建线条的应用程序。当我输入datacursormodeto createdatatips时,它会在光标位置之后的行上创建。
datacursormode
datatips
我想知道如何将它们从 中移除datacursormode,但不要让它们不可见。
要解决它,请将其句柄 HitTest 关闭。
即,线由 plot 或 line 命令创建,然后在其末尾添加以下对值:
plot(…,'HitTest','off'); line(…,'HitTest','off');
这将使数据光标模式的行不可见。