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.
I create chart with Heading/Footing in HTML. The chart display fine. But because the chart has heading, it adds a scroll bar to the output. I know there is ON GRAPH SET EMBEDHEADING option to avoid the scroll bar. But the user wants to export the chart. So I add the link behind the Heading. Does anyone has similar experience? Is it possible to remove the scroll bar but also keep the heading at the same time?
Thank youThis message has been edited. Last edited by: <Emily McAllister>,
Thank you. I was trying to create a drill-down from the heading. With ON GRAPH SET EMBEDHEADING ON turns the heading to text. Is there any other solution that can add a text/image to the chart area that can drill-down from?
Sorry I can't share the code so use the code from doc as example.
GRAPH FILE WF_RETAIL_LITE
SUM COGS_US
ACROSS PRODUCT_CATEGORY
FOOTING
"Export To PDF"
"Export To PPTX"
ON GRAPH SET EMBEDHEADING ON
ON GRAPH PCHOLD FORMAT JSCHART
ON GRAPH SET LOOKGRAPH PIE
ON GRAPH SET STYLE *
*END
INCLUDE=IBFS:/FILE/IBI_HTML_DIR/javaassist/intl/EN/combine_templates/ENFlat_ALM.sty,$
TYPE=REPORT, TITLETEXT=&WF_TITLE.QUOTEDSTRING, $
TYPE=FOOTING, LINE=1, JUSTIFY=LEFT, OBJECT=TEXT, TARGET='_blank',FOCEXEC=IBFS:/WFC/Repository/Investment_Analytics/Holdings/By_Security_Type/Portfolio_Holdings_PortfolioType_PDF.fex(....),$
*GRAPH_JS
title: {visible: true,
text: '<u><em>Title is underlined and italic using HTML tags</em></u>'}
*END
ENDSTYLE
END
So I want to add a drill-down link from footing. With "ON GRAPH SET EMBEDHEADING ON", it turn the footing to text inside the chart. But the drill-down option is not working. If I remove "ON GRAPH SET EMBEDHEADING ON" from the code, the drill-down works but the footing comes below the chart and make the chart has scroll bar.
Is there anyway that can make both the drill-down working and no scroll bar?