MATLAB: How to put text in the axis for each point in the plot rotated

axisplottext;

I am using
plot(0:length(x)-1,x)
set(gca,'XTick',0:length(words)-1,'XTickLabel',cellstr(words));
to put some text for each point in the plot on the abscissa but since they are too much is not possible to read them when exporting the figure as an image.
I was thinking to show them, still on the abscissa, but rotated so that they do not overlap (or at least they overlap less). Is there a way? Thanks in advance.