How to hide text in axes?

1 次查看(过去 30 天)
han han
han han 2020-3-14
评论: Ahmed Anas 2020-3-14
How to hide text in axes.
This is my code,and it doesn't hide the a1 in checkbox.
I want to change the state of the text through the checkbox, but obviously it can't do it. What should i do?
function checkbox3_Callback(hObject, eventdata, handles)
[Nodelocation] = textread('observe/mdNodeLocationXY_axisforGUI2.txt');
WISETEST = fopen('observe/mdNodeLocationXY_axisforGUI2.txt', 'rt');
out = textscan(WISETEST, '%s', 'Delimiter',{' '});
checkbox3_value = get(handles.checkbox3, 'Value');
ab = out{1}(1:end);
a1= length(str2double(ab))/6;
a = [0:a1-1]';
b = num2str(a); c = cellstr(b);
a1 = text(Nodelocation(:,2), Nodelocation(:,3), c);
if checkbox3_value == 1
set(a1, 'Visible', 'on')
elseif checkbox3_value == 0
set(a1, 'Visible', 'off')
end
  3 个评论
han han
han han 2020-3-14
This way nothing has changed :(
Ahmed Anas
Ahmed Anas 2020-3-14
It is showing you the text or not? you are getting errors while hiding this, am i right?

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by