uitable
3 ビュー (過去 30 日間)
古いコメントを表示
How highlight the current day on my uicalendar???
0 件のコメント
採用された回答
Oleg Komarov
2012 年 3 月 5 日
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.
その他の回答 (1 件)
Jan
2012 年 3 月 5 日
4 件のコメント
Oleg Komarov
2012 年 3 月 5 日
Jan's suggestion was to look in the code of the submission to check how its author has implemented it.
参考
カテゴリ
Help Center および File Exchange で Calendar についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!