uitable
5 次查看(过去 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!