Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Display text vertically start from bottom to top in rdlc 2010

I want to display text in column header of ssrs 2010 like below image. i am able to display text vertically but it will display text top to bottom.

enter image description here

I am using visual studio 2010 and local report (RDLC file).

like image 875
Rikin Patel Avatar asked Aug 05 '12 13:08

Rikin Patel


1 Answers

Version 2008 and earlier don't have this feature, see this Microsoft Connect issue.

For SSRS 2008-R2 you should be able to do this, from the MSDN tutorial:

  1. Create a new report or open an existing report.
  2. If the Properties pane is not open, click the View tab and select the Properties check box.
  3. Click the text box for which you want to change text orientation.
  4. Locate the WritingMode property in the Properties pane and in the drop-down list select the text orientation to apply to the text box.
    Note: When the properties in the Properties pane are organized into categories, WritingMode is in the Localization category.
  5. In the list box, select Horizontal, Vertical, or Rotate270.

The Rotate270 value is the option you're looking for.

like image 179
Jeroen Avatar answered Sep 30 '22 17:09

Jeroen