SSRS tablix column CanGrow property for width?

2020-08-09 08:14发布

I'm working on a tablix in SSRS 2008 and want my columns to autosize (width only) to their contents. CanGrow only affects height. Is there a property I'm missing or any way to otherwise rig the columns to do this?

7条回答
一夜七次
2楼-- · 2020-08-09 08:50

As mentioned here, an easy fix to this issue is to add a row in your tablix and insert a chart to the corresponding column.

Then change its DynamicWidth to an expression like the following =iif(True, "4cm", "2cm") and its DynamicHeight to "0cm".

Chart on tablix to adjust column width

查看更多
登录 后发表回答