A Table Report represents information in tabular form. This
information can be stored in a report's datasource, which is usually not
hierarchical and contains only one data table.
For the table placed onto the Detail band, set its Borders
property to Left, Right, Bottom. For the table placed onto the group
header, set Borders to All.
If you want to place certain information below the table and under the page
footer (e.g., fill this area with a colored box), handle the XtraReport.FillEmptySpace
event.
For more details about creating Table Reports at design-time, see Table.
You are always required to set a correct width to an XRTable
object, since adding rows and cells to it at runtime does not change the table
size.
The height of a table should be explicitly specified only if cells' content
is not expected to stretch the cells (e.g., this may happen when their XRTableCell.CanGrow
property is enabled).
When creating large tables in code, you can increase the report generator
performance by setting the XRTableCell.Weight
property to 1 for all table cells.