MATLAB: Resize Font Column Header on uitable inside GUI

MATLABuitable header html format

I have a uitable inside a GUI. I managed to change the font size of its contexts, but not of the headers, I just want to make my letters "bigger", that's it.
I know I can change the format of the contents with html format, but I could not do it with the headers.
Any ideas welcome.
Thanks in advance
Jordi

Best Answer

t = uitable('Data',magic(3));
set(t,'ColumnName',{'1','Hello','<h1>World</h1>'})
Related Question