Generating arbitrary colored tick labels
Ältere Kommentare anzeigen
From this thread I learned from @FrankZalkow how to assign different colors to different tick labels. (I needed to use xticklabel_rotate to do this, because by default matlab just destroys the ticks, but I can live with this.) I want to extend his approach to produce arbitrarily colored labels. From the manual xcolors.sty, I learned how to insert into the \color{} command an arbitrary set of colors, i.e., \color{rgb:red,X;green,Y;yellow,Z} This does the trick in latex, but it doesn't work in matlab. Here's an mwe. If you set n=2 and run the code, you see a couple of colored \lambda's, but when n=3 it doesn't work. Can somebody suggest how to make it work please?
As a side question, I'm curious why even with n=2, it doesn't work without using xticklabel_rotate. Thanks for any advice.
n=3;
plot(1:n);
XTickLabel{1} = '\color{red} \lambda' ;
XTickLabel{2} = '\color{blue} \lambda' ;
if n==3;
XTickLabel{3} = '\color{rbg:red,5;green,6;yellow,1} \lambda' ;
end
set(gca,'XTick',[1:n]);
set(gca,'XTickLabel',XTickLabel);
xticklabel_rotate([],90)
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Axis Labels finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!