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
Hi...we tried this and no particular option for that in cognos MR2...
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