As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
We have a few GRAPHs with HEADINGs like:[CPDE] HEADING "What this graph is about" "Apples<+0>:<+0>&PARAM1" "Pears<+0>:<+0>&PARAM2" "Oranges<+0>:<+0>&PARAM3" [/CODE]
But this doesn't get picked up in the generated HTML; The first line is printed in a larger font, and centered, as expected. The succeeding lines do get printed in a smaller font, however, their WIDTHs are nowhere to be found in the HTML source! The columns are printed like: Apples:3 Pears:1 Oranges:7
So how are we supposed to format those headings?This message has been edited. Last edited by: Wep5622,
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :
We "solved" it a little differently, namely by inserting a mostly empty TABLE FILE before the GRAPH. That way we could obtain proper formatting without having to resort to monospaced fonts.
It would have been a little easier if IBI didn't force you to use at least one of the table files' columns in your output - it means we need to fool it into submission for no good reason.
This is how we solved it:
SET EMPTYREPORT = ON
TABLE FILE CAR
PRINT COMPUTE X/A1 = IF CAR EQ 'X' THEN ' ' ELSE ' '; AS ''
WHERE RECORDLIMIT EQ 1;
ON TABLE SUBHEAD
"What this graph is about"
HEADING
"Apples<+0>:<+0>&PARAM1"
"Pears<+0>:<+0>&PARAM2"
"Oranges<+0>:<+0>&PARAM3"
ON TABLE SET STYLE *
UNITS=CM,
$
TYPE=TITLE, COLUMN=N1, CLASS=dummy, $
TYPE=TABHEADING, LINE=1, CLASS=TABHEADING, WIDTH=25, JUSTIFY=CENTER,$
TYPE=HEADING, ITEM=1, WIDTH=3, CLASS=HEADING,$
TYPE=HEADING, ITEM=2, WIDTH=.5, CLASS=HEADING,$
TYPE=HEADING, ITEM=3, WIDTH=3, CLASS=HEADING,$
END
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :
TABLE FILE SYSTABLE
SUM NAME NOPRINT
ON TABLE SET PREVIEW ON
ON TABLE SUBHEAD
"What this graph is about"
HEADING
"Apples<+0>:<+0>2"
"Pears<+0>:<+0>2"
"Oranges<+0>:<+0>3"
END
This will give you also what you want.
GamP
- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :