Removing Xaxis and Yaxis values

640 views (last 30 days)
Hey I have plotted a graph but I want to remove the values on the axis, I don't want the numbers to show

Accepted Answer

Chenchal
Chenchal on 3 Nov 2017
% code
x = rand(1,100);
plot(x);
set(gca,'XTick',[], 'YTick', [])
  3 Comments
Paulo Providencia
Paulo Providencia on 10 Mar 2023
I had to use xticklabels([])

Sign in to comment.

More Answers (1)

DanielFromIllinois
DanielFromIllinois on 11 Mar 2025
set(ax,'xticklabel',[])
You can also use set(ax,'XTick',[]) but then you lose the ability to still turn the xgrid on. The grid will draw lines at your ticks specified by 'XTick'.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!