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. Moving forward, myibi is our community platform to learn, share, and collaborate. We have the same Focal Point forum categories in myibi, so you can continue to have all new conversations there. If you need access to myibi, contact us at myibi@ibi.com and provide your corporate email address, company, and name.
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?