To make a table with automatically calculated columns' widths, set this property to TableSizingModeEnum.Auto, and the Width on the RenderTable to Unit.Auto, e.g.: RenderTable rt = new RenderTable(); rt.ColumnSizingMode = TableSizingModeEnum.Auto; rt.Width = Unit.Auto;