Clear Filters
Clear Filters

Is there a way to remove individual tick labels

15 views (last 30 days)
II would like to remove the top right y-axis tick label (but not all the tick labels).
Is there a way to do this?

Accepted Answer

Walter Roberson
Walter Roberson on 28 Jan 2016
ax = gca; %or as appropriate
yticklabels = get(ax, 'YTickLabel');
yticklabels{end} = ''; %needs to exist but make it empty
set(ax, 'YTickLabel', yticklabels);

More Answers (0)

Community Treasure Hunt

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

Start Hunting!