How do you zoom in on a graph rather than on the map/axes?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I'm trying to make a graph larger, but using the magnifying glass zoom icon just changes the size of the axes, rather than making the graph itself larger and easier to read. Is there a command or procedure that can be used to zoom in on the graph so that it becomes bigger and clearer?
0 comentarios
Respuestas (1)
Image Analyst
el 29 de Dic. de 2015
Maybe just make things bigger in the first place.
When you draw the graph, xlabel(), ylabel(), and title() have 'FontSize' properties.
xlabel('This is the X axis', 'FontSize', 20);
In addition, plot() has 'LineWidth' and 'MarkerSize' properties.
plot(x, y, 'FontSize', 20, 'MarkerSize', 18);
The axes also have properties for the size, font, and angle of the tick marks.
Ver también
Categorías
Más información sobre Data Exploration en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!