If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

Formatting Text at 90 degrees

Started by sleepy, 25 Jul 2006 08:46:18 PM

Previous topic - Next topic

sleepy

In some of my reports I need to align some text so it appears at 90 degrees going from left to right (ie UP the page).

In ââ,¬Å"text flow and justificationââ,¬Â I can set ââ,¬Å"writing modeââ,¬Â so it appears ââ,¬Ëœtop to bottom, RIGHT to LEFTââ,¬â,,¢ (ie DOWN the page).

Does anyone know how I can get format text so that it appears ââ,¬Ëœbottom to top, LEFT to RIGHTââ,¬â,,¢ (ie UP the page).

Thanks,
Steve

mrcool

Hi...we tried this and no particular option for that in cognos MR2...

kalyan_sekhar1

Hi,

Use Style sheets to achieve this functionality, here is the CSS code

.txtornt {

PADDING-RIGHT: 0px;

PADDING-LEFT: 0px;
PADDING-BOTTOM: 2px;

PADDING-TOP: 2px;
height: 40px;
WHITE-SPACE: nowrap;
   filter: flipH() flipV();
   LINE-HEIGHT: 40px;
   WRITING-MODE: tb-rl;
}

Thanks