Reporting Services - Matrix Alignment Right to Left

In the RS report, I have a matrix whose LayoutDirection property is set to RTL (because it is in Hebrew). I created a group of columns by dragging a field from the list of fields in the dataset and dropping it in the header of the matrix column. Therefore, the number of columns is a variable (this is normal).

When I look at the report, the column order is correct (from right to left). But the problem is that the matrix grows to the right and always aligns to the left. RTL report, so I need the path around, i.e. I want the matrix to be aligned to the right and increase to the left.

I could not find a way to fix this. Could you help me solve this problem? Thanks.

+4
source share
1 answer

The fix is ​​to set the RightToLeft property in the ReportViewer control to Yes.

A report viewer is a control that hosts and displays RDL. By default, the report viewer is installed from left to right, not RTL.

I used it in my company and it works great!

See post for more details.

+1
source

Source: https://habr.com/ru/post/1443654/


All Articles