compass plot label FontSize

6 vues (au cours des 30 derniers jours)
ceejay
ceejay le 12 Mai 2021
Commenté : ceejay le 13 Mai 2021
Please could you tell me if it is possible to specify a font size of, say, 14 for the r and theta axes of a compass plot? I have tried using ax = gca and ax.FontSize =... and rticklabels but I can't get anything to work. Apologies if I have missed some documentation...

Réponse acceptée

Adam Danz
Adam Danz le 12 Mai 2021
Modifié(e) : Adam Danz le 12 Mai 2021
compass() still uses the old polar axes that are actually cartesian axes with circles and radii to appear as polar axes. The tick labels are just text objects since there aren't really theta or rho axis-components.
Get the tick labels by searching text objects.
u = [5 3 -4 -3 5];
v = [1 5 3 -2 -6];
h = compass(u,v);
ax = ancestor(h(1),'axes');
th = findall(ax,'Type','Text');
set(th, 'FontSize', 14)
  1 commentaire
ceejay
ceejay le 13 Mai 2021
Brilliant, thank you!!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Polar Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by