TTIWAdvTreeView Font

I've set the Font.FontFamily of all IW controls on my form to "Arial, Sans-Serif, Verdana", also for the TTIWAdvTreeView-control. The treeview seems to ignore this setting, node are rendered always with the same font, also when setting the font to some other joice. What I'm missing?
Toni

Hi,


Please try the following:
- Add a TTIWClientCode component on the form
- Add this code in the Form's OnCreate event:

  TIWClientCode1.CodeType := ctCSS;
  TIWClientCode1.Code.Clear;
  TIWClientCode1.Code.Add('.treeview{font-family: "Arial";}');

Hi,
works great. thank you
Toni