setting all colum values bold

Hi,
i have a column named “maximun”,i want all values under it to be bold…how can i do that??
Thanks in Advance…

You can use “style” or “css” attributes of the tag:

<cell style="font-weight:bold">cell value</cell>

Hi ,
Can i do that for a column at a single place rather than using cell in which i have use it at different places

No, it not possible. You should specify style for each cell in column separately.

As a work around you can create custom eXCell type. You should redefine setValue() method of the cell, so you will specify style of the cells in column only once. Please find more information here docs.dhtmlx.com/doku.php?id=dhtm … l_creation