Can the font size of gscatter x-axis and y-axis labels be changed?

11 visualizzazioni (ultimi 30 giorni)
I'm creating several group scatter plots where the a-axis and y-axis labels vary from plot to plot. The parameters xnam and ynam specify the names to use for the x-axis and y-axis labels.
Are the font sizes of these parameters hard coded to specific values? Or can they be varied?
Thank you.

Risposta accettata

Star Strider
Star Strider il 16 Mag 2017
You can vary them with the 'FontSize' p[roperty.
Example
x = rand(1,100);
y = rand(1,100);
figure(1)
scatter(x, y)
xlabel('X Value', 'FontSize',20);
ylabel('Y Value', 'FontSize',30)
grid

Più risposte (0)

Categorie

Scopri di più su Labels and Annotations in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by