How can I change the BackgroundColor on TickLabel

17 visualizaciones (últimos 30 días)
Tobias Benjamin Gram
Tobias Benjamin Gram el 11 de Sept. de 2014
Editada: Star Strider el 12 de Sept. de 2014
How do I set the backgroundcolor to let say white on the ticklabels and not the axis-label.
Something like this:
set(get(gca,'xticklabel'),'backgroundcolor','w')
But sadly it's not working.

Respuesta aceptada

Star Strider
Star Strider el 11 de Sept. de 2014
Editada: Star Strider el 12 de Sept. de 2014
You can do that, but not the way you wrote. You will have to use the text command and its subtleties, for instance Drawing Text in a Box.
You will need to get the 'XTick' values, not only to tell text what to write, but where to put the numbers. (You might also find strsplit helpful.) The section on Text Alignment will help you there. Remember to set 'XTickLabel',[] so they don’t display. Otherwise you will be competing with them. Also, assign ylim to a variable, and set the y-offset to your text call to -0.01 of the diff of that value to start, then adjust as necessary to achieve the result you want.
Here’s an example:
x = linspace(-2*pi,2*pi,250);
y = cos(x*0.25).*sin(10*x);
figure(1)
plot(x, y)
grid
xtk = get(gca,'XTick');
ymin = min(ylim);
yrng = diff(ylim);
set(gca,'XTickLAbel',[])
xlbl = strsplit(num2str(xtk,'%.1f '), ' ');
text(xtk, ymin-0.03*yrng*ones(size(xtk)), xlbl, 'HorizontalAlignment','center', 'VerticalAlignment','top', 'BackgroundColor', 'g')
I coloured the background green here because it otherwise doesn’t show up on the saved .png version:

Más respuestas (0)

Categorías

Más información sobre Labels and Annotations en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by