uitable
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How highlight the current day on my uicalendar???
0 Commenti
Risposta accettata
Oleg Komarov
il 5 Mar 2012
An alternative:
You could modify:
function outHtml = colText(inText, inColor)
% return a HTML string with colored font
outHtml = ['<body bgcolor="Silver", font color="', ...
inColor, ...
'">', ...
inText, ...
'</font></body>'];
end
Note the bgcolor, however the result is not so nice (but you can customize each cell).
Another thing you could do is play with the 'BackgroundColor' property, but it affects all cells or you can customize odd, even.
Più risposte (1)
Jan
il 5 Mar 2012
4 Commenti
Oleg Komarov
il 5 Mar 2012
Jan's suggestion was to look in the code of the submission to check how its author has implemented it.
Vedere anche
Categorie
Scopri di più su Calendar in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!