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.
Hi, I am displaying charts side-by-side in PDF format (6 charts per page).My requirement is to include footnote at the bottom of each chart. This is the command that I am using from the graph pdf help doc: setFootnoteString("text"); setTextWrap(getFootNote(),true); Also I have set the position of the footnote using setRect(). When the footnote extends to more than 4 lines,the text gets truncated.I have tried changing setRect's width, height,X and Y axis also.But it does'n work.Is there a way I can enable some scrolling for the footnote,so that the user can scroll and see the entire footnote string .?This message has been edited. Last edited by: Kerry,
Hi, Please find the code below. I have included the styling for the foot note also. Since the foot note is too large, its getting truncated.
SQL SQLORA SET SERVER DRUTIL SQL SQLORA
SELECT START_WEEK, GROUP_FLD AS GROUP_FLD, SUM(NETX360_UNI_LOGINS)/SUM(UNIQUE_LOGINS) AS PER FROM PROD_LOGINS_WEEKLY_TEMP WHERE GROUP_FLD IS NOT NULL AND START_WEEK BETWEEN (TRUNC(SYSDATE,'DAY')+1)-70 AND ((TRUNC(SYSDATE,'DAY')+1)-7)+ 6 GROUP BY GROUP_FLD,START_WEEK ORDER BY START_WEEK ;
SQL SQLORA END SESSION;
TABLE FILE SQLOUT PRINT * AND COMPUTE TIMELINE/HMtD=START_WEEK; ON TABLE HOLD AS GRAPH1 END
GRAPH FILE GRAPH1 SUM PER AS '' ACROSS TIMELINE AS '' BY GROUP_FLD AS '' NOPRINT ON GRAPH HOLD AS GRAPH1_IMG FORMAT GIF ON GRAPH SET LOOKGRAPH VLINE ON GRAPH SET GRAPHEDIT SERVER ON GRAPH SET BARNUMB OFF ON GRAPH SET 3D OFF ON GRAPH SET VZERO ON ON GRAPH SET GRID ON ON GRAPH SET GRMERGE ON ON GRAPH SET VAXIS 230 ON GRAPH SET HAXIS 431 ON GRAPH SET GRAPHSTYLE *
setFootnoteString("Diagram 6 - illustrates the trend in NetX360 logins at a firm level by Phase.The data captures the number of users within an IBD that logged into NetX360 at least 1x during the week period (M-F).Customer base includes DBS,GSS & NC.Total Phase 1 firms 451.Total Phase 2 firms 240.Total Phase 3 firms 75.Total Phase 4 firms 25.Phase 1 period Aug 09-Dec 09.Phase 2 period Oct 09-Feb 10.Phase 3 period Dec 09-Apr 10.Phase 4 period Dec 09-Jun 10");setFootnoteDisplay(true); -*setFootnoteAutofit(true); setFontSizeVC(getFootnote(),1080); setFontName(getFootnote(),"Courier New"); setRect(getFootnote(),new Rectangle(-13278,-21700,29999,10990)); setTextWrap(getFootnote(), true);
ENDSTYLE END
TABLE FILE SYSCOLUM " " SUM TBNAME NOPRINT ON TABLE SET PAGE-NUM NOLEAD ON TABLE SET PAGE-NUM OFF IF READLIMIT EQ 1 ON TABLE PCHOLD FORMAT PDF ON TABLE SET STYLE * TYPE = REPORT,IMAGE=GRAPH1_IMG.gif,POSITION=(0.338 6.83), DIMENSION=(3.8 2.4),$ TYPE=REPORT,PAGE-LOCATION=OFF,$ END
As an example, if you change the chart frame size to setRect(getFrame(),new Rectangle(-14000,-7000,29000,21000));, you can change the size and position of the chart, then you can make the footnote larger.