Set text box transparency

Hello, I have created a big GUI with two panels. In one of the two panels I plot N different subplots imagesc).On the right side of each subplot, the relative colorbar is dispayed. Then I added a push button which, whenever pushed, allows to get points coordinates and diplayes them in a text box (function text) at each click of the mouse. The problem is that, when I click on a point which is close to the right edge of the subplot, the text box goes behind the colorbar and the coordinates could not be red, of course. Any solution to this problem? I tried with uistack or by drawing a patch under the textbox, but this does not work.

4 comentarios

Lucia
Lucia el 5 de Nov. de 2015
Also, I can see that the main problem is that subplot axes and colorbar are chidren of the panel, while the text I add is child of the axes. This is why text goes behind colorbar.
Lucia
Lucia el 5 de Nov. de 2015
Any help??
Adam
Adam el 5 de Nov. de 2015
Can you not just use a staticly positioned text box?
TastyPastry
TastyPastry el 5 de Nov. de 2015
can you put a screenshot of what you're trying to do up?

Iniciar sesión para comentar.

Respuestas (1)

Jan
Jan el 5 de Nov. de 2015
Editada: Jan el 5 de Nov. de 2015

0 votos

You can check the position of the text compared to the axes limits. If it is near to the right side, use:
text(x, y, 'String', 'HorizontalAlignment', 'right');

Preguntada:

el 4 de Nov. de 2015

Editada:

Jan
el 5 de Nov. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by