Focal Point
Change Alignment of Active Report Header Text

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/402106505

August 10, 2010, 11:53 AM
Phil_j2w
Change Alignment of Active Report Header Text
Hello - I am wondering if it is possible to adjust the alignment of column header text in an Active Report. By default it aligns header text to the left. I'm wondering if I can change this to center or right. A previous post suggested that

HEADING CENTER

might work, but it doesn't seem to. Any thoughts? Is this simply not adjustable if the output is an active report? Thanks!


WebFOCUS 7701
Windows 2008
All Formats

August 11, 2010, 06:49 AM
Cyril Joy
Please post your sample code.


Regards,
Cyril Joy.

WF Production 8008 on Linux.
August 22, 2010, 05:37 PM
Phil_j2w
Hello. Here's the code that I'm using. Even though I have it set to Justify Right, the column titles still justify left if the output is AHTML. I am figuring this is because the AHTML report needs a place for the menu buttons on the right. I'm just wondering if there is any way to make the AHTML report have right justified column headers.

TABLE FILE AS_SEC_J2WDM_USERSTATUS
SUM
ATS_Hired
BY Year
HEADING
""
FOOTING
""
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT AHTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
TYPE=REPORT,
LINES-PER-PAGE=20,
$
TYPE=DATA,
COLUMN=N1,
JUSTIFY=RIGHT,
$
TYPE=DATA,
COLUMN=N2,
JUSTIFY=RIGHT,
$
TYPE=TITLE,
COLUMN=N1,
JUSTIFY=RIGHT,
$
TYPE=TITLE,
COLUMN=N2,
JUSTIFY=RIGHT,
$
ENDSTYLE
END


WebFOCUS 7701
Windows 2008
All Formats