TableView Caption Font

I created a mobile Header-Footer app.  I dropped a TMSFMXTableView on it and did not change anything but the following.  On Items[0].Caption I changed it to:  

Blue font test:<FONT color="clablue">Blue</FONT>  

The caption word "Blue" shows up in the Windows Preview as the color blue but on both iOS and Android it is the color black.  So the caption HTML support does not include font color?  Just double checking that I am not missing something (or doing something stupid).  Thanks.

Hi, 


In Windows, we were able to use a list with color objects which unfortunately doesn't work on iOS and Android. You will have to use the alternative hex value:

<FONT color="#0000FF">Blue</FONT>  

Kind Regards, 

PIeter

Thank you!