The simplest way to style the column title is to wrap a <span> element around the title.
<table class="easyui-datagrid" title="Basic DataGrid" style="width:700px;height:250px">
<thead>
<tr>
<th data-options="field:'itemid',width:80">Item ID</th>
<th data-options="field:'productid',width:100"><span style="font-weight:bold">Product</span></th>
</tr>
</thead>
</table>