For read-only, it is easy to append style information to the end of your value for each row:
<abs contexttype="opengear">
<meta>
<params>
<param access="1" constrainttype="STRING_CHOICE" name="Table" oid="params.table" precision="0" type="INT16" value="-1" widget="table">
<constraint>col1</constraint>
<constraint>col2</constraint>
</param>
<param access="1" maxlength="0" name="Col 1" oid="col1" precision="0" type="STRING_ARRAY" widget="label">
<value>Value One<style:col1style></value>
<value>Value Two<style:col1style></value>
<value>Value Three<style:col1style></value>
<value>Value Four<style:col1style></value>
<value>Value Five<style:col1style></value>
</param>
<param access="1" maxlength="0" name="Col 2" oid="col2" precision="0" type="STRING_ARRAY" widget="label">
<value>Another Value One<style:col2style></value>
<value>Another Value Two<style:col2style></value>
<value>Another Value Three<style:col2style></value>
<value>Another Value Four<style:col2style></value>
<value>Another Value Five<style:col2style></value>
</param>
</params>
<style id="col1style" value="txt-align:west;"/>
<style id="col2style" value="txt-align:center;"/>
</meta>
<param expand="true" height="250" left="15" oid="params.table" showlabel="false" top="18" width="341"/>
</abs>
If you want to do read/write, you would be best-served by switching to a 'script table' where you can specify different styles for each cell independent of the value.
#DashBoard