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!