R2020b bug? The report generator worked fine until updated to R2020.

조회 수: 1 (최근 30일)
John
John 2020년 11월 10일
답변: Rahul Singhal 2020년 11월 17일
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
John
John 2020년 11월 10일
Resolved by changing all border to border('solid','black'). Lot of work!
Rahul Singhal
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개)

Cris LaPierre
Cris LaPierre 2020년 11월 10일
I don't have anything to test against, but do the table formatting options help?
  댓글 수: 1
John
John 2020년 11월 10일
Resolved by changing all border to border('solid','black'). Lot of work!

댓글을 달려면 로그인하십시오.


Rahul Singhal
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

제품


릴리스

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by