COGNOiSe.com - The IBM Cognos Community

Legacy Business Intelligence => COGNOS ReportNet => Topic started by: sleepy on 25 Jul 2006 08:46:18 PM

Title: Formatting Text at 90 degrees
Post by: sleepy on 25 Jul 2006 08:46:18 PM
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
Title: Re: Formatting Text at 90 degrees
Post by: mrcool on 26 Jul 2006 01:07:13 AM
Hi...we tried this and no particular option for that in cognos MR2...
Title: Re: Formatting Text at 90 degrees
Post by: kalyan_sekhar1 on 08 Aug 2006 06:32:30 AM
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