5

In a RS report I have a matrix whose LayoutDirection property is set to RTL (because it's in Hebrew). I created a column group by dragging a field form the dataset field list and dropping it in the column header of the matrix. So the number of the columns is variable (which is OK).

When I view the report, the order of the columns is correct (from right to left). But the problem is that the matrix grows to the right and is always aligned to the left. The report is RTL, so I need the way around, i.e. I want the matrix to be aligned to the right and grow to the left.

I couldn't find a way to fix it. Could you please help me to solve this problem? Thanks.

j0k
  • 22,600
  • 28
  • 79
  • 90
kodkod
  • 1,556
  • 4
  • 21
  • 43

1 Answers1

1

The way to fix it is by setting the property called "RightToLeft" in the "ReportViewer" control to "Yes".

The report viewer is the control which host and present the RDL. by default the report viewer set to left to right and not to RTL.

I have used it at my company and it works fine!

For more details look at this post

Silagy
  • 3,053
  • 2
  • 27
  • 39
  • Thanks, but the report is viewed directly in the RS server, not in a ReportViewer control. – kodkod Nov 04 '12 at 16:09
  • So Unfortunately i don't think you can achieve it... I searched for a solution a lot time and haven't found one, but using the report viewer – Silagy Nov 04 '12 at 18:06