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?
相关问题
- Get image width height javascript
- Why does SSRS need to recycle the application doma
- Use multiple ReportItems in one expression in RDLC
- Get the size of an element when inside a display:n
- How to delete old subscriptions
相关文章
- SQL Server Reporting Services - Set default value
- Get list of reports from SSRS?
- SSRS tablix column CanGrow property for width?
- Is it possible to style a text input to fill the w
- The report server cannot process the report or sha
- Canon EDSDK How can I get width and height of live
- SSRS 2008 report not working with using a stored p
- CSS width wierdness in Chrome and Firefox with Pur
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 itsDynamicHeight
to "0cm".