Change Color of each individual String in a Listbox ?
Mostra commenti meno recenti
Hey Guys,
I want to give each Word in my List box an specific color. My mentor said: its not possible. Now I ask here: is it possible to chose the Color of Listbox text with the RGB system ?
Risposta accettata
Più risposte (4)
Adam
il 1 Set 2014
Slightly modified example of code Yair Altman posted many years ago:
figure; uicontrol('Style','list', 'String', ...
{'<HTML><FONT color="red">Red</FONT></HTML>', ...
'<HTML><FONT color="green">Green</FONT></HTML>', ...
'<HTML><FONT color="blue">Blue</FONT></HTML>'} );
7 Commenti
Max Müller
il 1 Set 2014
Adam
il 1 Set 2014
It's just using the fact that underlying Matlab UI controls are Java controls and you can do things like use HTML markup in those.
You can also do things like create a multi-line Pushbutton string which I have often found useful, using HTML.
Image Analyst
il 1 Set 2014
Yair Altman
il 4 Set 2014
Modificato: Yair Altman
il 4 Set 2014
Here's an article explaining all this: http://undocumentedmatlab.com/blog/html-support-in-matlab-uicomponents
And related code/images (note that it's case-insensitive and that you don't have to close the HTML tags):
uicontrol('Style','list', 'Position',[10,10,70,70], 'String', ...
{'<HTML><FONT color="red">Hello</Font></html>', 'world', ...
'<html><font style="font-family:impact;color:green"><i>What a', ...
'<Html><FONT color="blue" face="Comic Sans MS">nice day!</font>'});

Keqin Xu
il 31 Ott 2019
Trouble is, when there are "<" in the string, the "<" are all missing in the listbox!
Any ideas to fix it? Thanks!
Adam
il 1 Nov 2019
You can use <, > for < and >
Max Müller
il 1 Set 2014
0 voti
4 Commenti
Adam
il 1 Set 2014
I'm not really familiar with HTML myself, I just learn on a "need to know" basis. I know you can use hex colour codes (I did it myself for the first time last week) rather than named colours, but I'm not sure about RGB colours...
Guillaume
il 1 Set 2014
Well, hex colour code is just red, green, blue (in that order) encoded as 2 bytes hexadecimal on a scale of 0 to 255.
e.g: red = 0, green = 126 (7E), blue = 255 (FF) => hex = 007EFF
Adam
il 1 Set 2014
dec2hex( [r g b] )
should help convert between the two, although you have to scoop up the 3 rows of the result into a single string to put into the html string.
Guillaume
il 2 Set 2014
That would be:
reshape(dec2hex([r g b], 2)',1, 6)
Max Müller
il 2 Set 2014
0 voti
1 Commento
Image Analyst
il 2 Set 2014
Max, this is not an official "Answer" to your original question. If anything, it should have been a Comment to some other response.
Max Müller
il 2 Set 2014
0 voti
2 Commenti
Adam
il 2 Set 2014
Please don't keep adding new questions as answers, it is confusing.
You can define the colour of independent static text objects easily enough (or indeed any independent objects like that if they are predefined).
If you want to have different coloured backgrounds or text in a listbox or uitable or similar though then I'm not aware of any alternative to using html and/or the underlying java UI programming as discussed in previous answers.
If you can explain which element of the suggested solution you are having a problem with we can assist further on that.
Max Müller
il 2 Set 2014
Categorie
Scopri di più su Creating, Deleting, and Querying Graphics Objects in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!