Is there a method to customize the line spacing in SSRS? I am working on a legal document that requires larger line spacing.
After researching, it seems like the Textbox.LineHeight
property primarily impacts html. Despite converting the text inside the textbox to html and adjusting the LineHeight property, I did not see any changes.
I even attempted to implement custom CSS in the report (utilizing traditional line-height: {x} pt;
within a style tag), but this approach was unsuccessful - as it is not supported within the SSRS platform.
Here is an example of what I am trying to achieve - how can this be done?
Before:
After
Does SSRS have the capability for this task?
Edit
Using an expression to convert the text and adding double VbCrLf may not work since I require only a partial adjustment to the line height.