Borrar filtros
Borrar filtros

how to make the edge of the graph bold ?

59 visualizaciones (últimos 30 días)
Ibrahim AlZoubi
Ibrahim AlZoubi el 21 de Jun. de 2020
Comentada: ibrahim alzoubi el 22 de Jun. de 2020
how to make the edge of the graph bold as shown below:

Respuesta aceptada

Star Strider
Star Strider el 21 de Jun. de 2020
Unfortunately, nothing is shown.
Guessing what you may want, try this:
x = 1:10;
y = rand(size(x));
figure
plot(x, y)
grid
title('Default Box Linewidth (0.5)')
figure
plot(x, y)
grid
set(gca, 'LineWidth', 1.5)
title('Redefined Box Linewidth (1.5)')
producing (only showing the second plot here):
See the documentation on Axis Properties, and specifically Box Styling for details.
  14 comentarios
Star Strider
Star Strider el 21 de Jun. de 2020
The person whose Answer you Accepted copied my Answer. Ther is no need for me to re-post it.
When I saw iyour other Question: how to make label y axis specific? I Answered it.
ibrahim alzoubi
ibrahim alzoubi el 22 de Jun. de 2020
chill! I didn't see your comment I said. trust me I'll accept it if I saw it.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Specifying Target for Graphics Output en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by