How can I move the colorbar in a surf plot?
17 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Johannes Thewes
el 14 de Sept. de 2018
Comentada: KALYAN ACHARJYA
el 16 de Oct. de 2018
When using the following code, the colorbar overlaps with the tick labels of the x-axis:
surf(peaks);
set(gca,'FontSize',28);
cb = colorbar;
I already tried to modify the x-position of the colorbar with:
pos = get(cb,'Position');
set(cb,'Position',pos + [0.05,0,0,0]);
This was unsuccessful since the whole axis is rescaled and even manually entering the retrieved original position values does not result in the original colorbar position. How can I move the colorbar to not overlap with the tick labels anymore?
Edit: The provided sample code is a simplified example and the increased fontsize is necessary for readability in my original code. My attempt to solve the problem was aimed at moving the colorbar further to the east.
1 comentario
madhan ravi
el 14 de Sept. de 2018
Editada: madhan ravi
el 14 de Sept. de 2018
In which position do you want the color bar to be?
Respuesta aceptada
Más respuestas (1)
KALYAN ACHARJYA
el 14 de Sept. de 2018
Editada: KALYAN ACHARJYA
el 14 de Sept. de 2018
surf(peaks);
set(gca,'FontSize',8);
cb=colorbar;

3 comentarios
KALYAN ACHARJYA
el 14 de Sept. de 2018
Editada: KALYAN ACHARJYA
el 14 de Sept. de 2018
If you want at a specific location, mention it in the comment section.
Ver también
Categorías
Más información sobre Surface and Mesh Plots 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!
