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.
Hello, I've looked around but not found anything on this topic. I have a need to suppress the labels that display when a user mouses over a bar, line, etc. on active report/dashboard charts.
This is specifically for an active dashboard, created as a compound document, that will be saved off as an HTML file for distribution (AHTML format).
Does anyone know of any tricks or settings that can suppress the labels?
thanks- RyanThis message has been edited. Last edited by: Ryan N,
WF: WebFocus 8.0.02 InfoAssist, Dev Studio, Magnify, Portal/Dashboards, Mobile Favs Data: DB2 OS: Windows Output: Multiple
Posts: 23 | Location: KC, MO | Registered: August 05, 2013
Should be in some active related js files and need to remove/comment out Tooltip options. For instance, ardefchart.js may be the one for it. It's better to check with IBI.
-Rifaz
WebFOCUS 7.7.x and 8.x
Posts: 406 | Location: India | Registered: June 13, 2013
Thanks, our regional customer solutions group has been looking into this and thus far has not come back with anything, so I thought I'd post here.
We have an enterprise-wide installation that supports many groups so unfortunately I can't go in and modify core .js files but I appreciate the suggestion.
WF: WebFocus 8.0.02 InfoAssist, Dev Studio, Magnify, Portal/Dashboards, Mobile Favs Data: DB2 OS: Windows Output: Multiple
Posts: 23 | Location: KC, MO | Registered: August 05, 2013
GRAPH FILE CAR
SUM RC DC SALES
BY COUNTRY
ON GRAPH PCHOLD FORMAT AHTML
ON GRAPH SET ARGRAPHENGIN JSCHART
ON GRAPH SET LOOKGRAPH VBAR
ON GRAPH SET STYLE *
*GRAPH_SCRIPT
setToolTipDisplay(false);
*GRAPH_JS
series: [
{series: 'reset', tooltip: ''},
]
*END
ENDSTYLE
END
Thanks for the suggestions. I had played around with those jschart options in the past, tried making the tool tips HTML, etc. and at the time many of the options were not affecting active chart output. However, just for the heck of it I tried adding
setToolTipDisplay(false);
again today and I'll be darned if it didn't work! I didn't add any of the GRAPH_JS series code as whenever I tried using series:[ ] parameters in the past I just got javascript errors from the browser.
Our IBI person was also surprised that it worked for an active report chart as he had not had any luck with that parameter in active reports when he was looking in to ways to help me, he wanted to see the code for the chart. I guess it's my lucky day! Thanks.
WF: WebFocus 8.0.02 InfoAssist, Dev Studio, Magnify, Portal/Dashboards, Mobile Favs Data: DB2 OS: Windows Output: Multiple
Posts: 23 | Location: KC, MO | Registered: August 05, 2013
Just a little more info, the car file code does not run for me with the GRAPH_JS code, this error occurs:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; chromeframe/32.0.1700.107; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MS-RTC LM 8)
Timestamp: Wed, 25 Mar 2015 20:12:51 UTC
Message: 'series[...].series' is null or not an object
Line: 4976
Char: 402
Code: 0
URI: http://uxdapwfcnts01:8080/ibi_...PG_File=nvcvycpq.htm
Removing the GRAPH_JS code and leaving
*GRAPH_SCRIPT
setToolTipDisplay(false);
*END
does achieve the desired result.
Thanks again for the help.
WF: WebFocus 8.0.02 InfoAssist, Dev Studio, Magnify, Portal/Dashboards, Mobile Favs Data: DB2 OS: Windows Output: Multiple
Posts: 23 | Location: KC, MO | Registered: August 05, 2013