I am working on migrating a GUI from MATLAB GUIDE to App Designer (v2019b). In GUIDE, I could format the tooltip text by supplying an HTML string. This doesn't appear to work in App Designer. Is there any way to format the tooltip text in App Designer?
In particular, I'm looking to bold certain words and add line breaks to the tooltip. Here's an example of the formatting I used in GUIDE:
<html>Here's a description of a Table<br>
<b>Column1: </b> This is a description of Column1.<br>
<b>Column2: </b> This is a description of Column2.<br>
<b>Column3: </b> This is a description of Column3.
For an output that would look like:
Here's a description of a Table
Column1: This is a description of Column1.
Column2: This is a description of Column2.
Column3: This is a description of Column3.