axis labels using geoscatter

22 views (last 30 days)
audi23
audi23 on 27 Jul 2019
Answered: Sai Bhargav Avula on 30 Jul 2019
Does anyone know how to change axis label size and font while using geoscatter? I'm plotting some lon and lat information using geoscatter. I've tried manually changing the font/fontsize when I have the matlab figure, but every time i save the image it reverts back to default size/font.
Thanks in advance!

Answers (1)

Sai Bhargav Avula
Sai Bhargav Avula on 30 Jul 2019
Try changing the axis label size and font through GeographicAxes Properties by using geoaxes function.
Latitude and Longitude axis FontSize can be changed by
gx = geoaxes;
gx.LongitudeLabel.FontSize = 24;
gx.LatitudeLabel.FontSize = 24;
Refer the following link for further details
Hope this helps!

Categories

Find more on Geographic Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!