Hi,
We need to set the default font style and size for each cell in a table through XML template.As highlighted below. The code throw exception stating that "DefaultCellTextInfo" is not valid element.
IS there anyway we can achieve without writing code to set the Default Cell TextInfo?
<Table MarginTop="10" ID="DataTable" ColumnWidths="50% 50%">
<DefaultCellTextInfo>
<All FontSize="8"></All>
</DefaultCellTextInfo>
<Row>
<Cell BackgroundColor="Gray">
</Cell>
<Cell BackgroundColor="Gray">
</Cell>
</Row>
</Table>