R2020b bug? The report generator worked fine until updated to R2020.
1 次查看(过去 30 天)
显示 更早的评论
The table cell's rowsep and border color used to be black, with red or other color text.
After updated to R2020b, the rowsep and border become same color as text.
How to correct it in an easy way? There are too many these table cells.
5 个评论
Rahul Singhal
2020-11-10
Yes, I understand that. But the requested information will be helpful for the team to investigate and resolve this issue for 20b and future releases.
回答(2 个)
Rahul Singhal
2020-11-17
Hi John,
If you are specifying the Color format in the DOM Table's Style property, that is making the rowsep/colsep to be of the same color as content, we suggest using TableEntriesStyle property instead. As an example, in your code:
replace:
table.Style = [table.Style {Color('red')}]; % makes content, rowsep, colsep to be red
with
table.TableEntriesStyle = [table.TableEntriesStyle {Color('red')}]; % makes only content to be red
Thanks,
Rahul
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 MATLAB Report Generator 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!