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'd really like to be able to drilldown on the labels in a chart.
Reference: Mr Gross' posthttp://forums.informationbuild...1057331/m/1417050186 with the last post stating "However, I am happy to inform you that this is a new feature that will be included with the release of WebFOCUS 8.2.00."
OK, how and where, in AS? I have 'Enable Auto Linking' set in the chart . But, I don't see 'Auto Link Target' in the report . Both are opened in the GUI.
-DEFAULT &ModelName = 'Nitro Shock'
-*IA_GRAPH_BEGIN
-*Do not delete or modify the comments below
-* OK, I did delete the comments... for the sake of Focal Point...
-*Do not delete or modify the comments above
DEFINE FILE CAR
BOGUS_COST/D20.2M=IF MODEL CONTAINS 'DOOR' THEN -DCOST ELSE DCOST ;
END
ENGINE INT CACHE SET ON
SET PAGE-NUM=NOLEAD
-DEFAULTH &WF_HTMLENCODE=ON;
SET HTMLENCODE=&WF_HTMLENCODE
SET ARGRAPHENGINE=JSCHART
-DEFAULTH &WF_EMPTYREPORT=ON;
SET EMPTYREPORT=&WF_EMPTYREPORT
SET EMBEDHEADING=ON
SET GRAPHDEFAULT=OFF
-DEFAULTH &WF_STYLE_UNITS='PIXELS';
-DEFAULTH &WF_STYLE_HEIGHT='405.0';
-DEFAULTH &WF_STYLE_WIDTH='770.0';
-DEFAULTH &WF_TITLE='WebFOCUS Report';
GRAPH FILE CAR
-* Created by Info Assist for Graph
SUM BOGUS_COST AS ''
BY CAR.CARREC.MODEL AS ''
ON GRAPH PCHOLD FORMAT JSCHART
ON GRAPH SET VZERO OFF
ON GRAPH SET GRWIDTH 1
ON GRAPH SET AUTOFIT ON
ON GRAPH SET UNITS &WF_STYLE_UNITS
ON GRAPH SET HAXIS &WF_STYLE_WIDTH
ON GRAPH SET VAXIS &WF_STYLE_HEIGHT
ON GRAPH SET LOOKGRAPH BAR
ON GRAPH SET AUTOFIT ON
ON GRAPH SET STYLE *
*GRAPH_SCRIPT
setPieDepth(0);
setPieTilt(0);
setDepthRadius(0);
setPlace(true);
setCurveFitEquationDisplay(false);
*END
INCLUDE=IBFS:/FILE/IBI_HTML_DIR/ibi_themes/Warm.sty,$
TYPE=REPORT, TITLETEXT=&WF_TITLE.QUOTEDSTRING, $
TYPE=DATA, COLUMN=N1, BUCKET=x-axis, $
TYPE=DATA, COLUMN=N2, BUCKET=y-axis, $
*GRAPH_SCRIPT
setReportParsingErrors(false);
setSelectionEnableMove(false);
setDataTextPosition(1);
setFontStyle(getDataText(),3);
setTextRotation(getO1Label(),3);
*END
ENDSTYLE
END
-RUN
-*IA_GRAPH_FINISH
This message has been edited. Last edited by: Doug,
In FOCUS Since 1983 ~ from FOCUS to WebFOCUS. Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005
For the record, we have an open NFR for a drilldown on Legend labels. Status is "Product Division", Last updated in December, 2016.
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 :
Remember the way it works in the product division. The more cases that get opened asking for the same NFR, the more likely it'll get attention from the PM.
Just sayin - if you want this feature, be sure to open a case asking for it. You can reference the other case that WEP is referring to if you know the case number. That will make it pretty easy for the TSR who owns the case to tie them together and it'll be off their plate pretty quickly so they won't mind much.
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 :
Here's some code that you might like to play with. I've included the components that you might like to trap an event for, but commented out most of them. I found this back in June but didn't make a note of where Anyway, for what it's worth -
-DEFAULTH &WF_STYLE_UNITS='PIXELS';
-DEFAULTH &WF_STYLE_HEIGHT='405.0';
-DEFAULTH &WF_STYLE_WIDTH='770.0';
-HTMLFORM BEGIN
<!doctype html>
<html lang="en">
<head>
<title>Chart Events</title>
<script type="text/javascript">
<!--
function chartEvent(chtObj) {
-* if (! validName(chtObj.chartObjName)) return false;
var clickText = chtObj.chartObjName ;
console.log(chtObj)
if (typeof chtObj.group != 'undefined') clickText += ' (Group: ' + chtObj.group + ')' ;
if (typeof chtObj.series != 'undefined') clickText += ' (Series: ' + chtObj.series + ')' ;
if (typeof chtObj.svgElement != 'undefined') {
if (chtObj.svgElement.childNodes.length > 0) {
clickText += ' (' + chtObj.svgElement.childNodes[0].data + ')' ;
}
}
-* this section will allow you to trap the values when clicking on a riser.
-* However, you might need to play a bit :)
-* if (typeof chtObj.svgElement != 'undefined') {
-* if (chtObj.svgElement.tdgtitle_dom.innerText !== "") {
-* clickText += ' (' + chtObj.svgElement.tdgtitle_dom.innerText + ')' ;
-* }
-* }
document.getElementById(chtObj.event.type + 'Evt').innerHTML = clickText ;
}
function validName(name) {
if (name=='xaxisOrdinal-labels') return true ;
return false ;
}
//-->
</script>
</head>
<body>
<table>
<tr>
<td>Click Event:</td>
<td><div id="clickEvt"></div></td>
</tr>
<tr>
<td>Mouse Over Event:</td>
<td><div id="mouseoverEvt"></div></td>
</tr>
<tr>
<td>Mouse Out Event:</td>
<td><div id="mouseoutEvt"></div></td>
</tr>
</table>
</body>
</html>
-HTMLFORM END
GRAPH FILE car
-* Created by Info Assist for Graph
SUM CAR.BODY.DEALER_COST
CAR.BODY.SALES
CAR.BODY.RETAIL_COST
CAR.BODY.SEATS
BY CAR.ORIGIN.COUNTRY
ON GRAPH PCHOLD FORMAT JSCHART
ON GRAPH SET VZERO OFF
ON GRAPH SET HTMLENCODE ON
ON GRAPH SET GRAPHDEFAULT OFF
ON GRAPH SET GRWIDTH 1
ON GRAPH SET UNITS &WF_STYLE_UNITS
ON GRAPH SET HAXIS &WF_STYLE_WIDTH
ON GRAPH SET VAXIS &WF_STYLE_HEIGHT
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 0
ON GRAPH SET GRLEGEND 0
ON GRAPH SET GRXAXIS 1
ON GRAPH SET LOOKGRAPH VBAR2AX
-*ON GRAPH SET AUTOFIT ON
ON GRAPH SET STYLE *
*GRAPH_SCRIPT
setTitleString("Chart Title");
setSubtitleString("Chart Sub-Title");
setFootnoteString("Chart Footnote");
setY1TitleString("Y1Title");
setY2TitleString("Y2Title");
setO1TitleString("O1Title");
setAxisAssignment(3,1);
setSeriesType(getSeries(3),2);
-*setDisplay(getAnnotation(0), true);
-*setTextString(getAnnotation(0), "annotation0");
-*setRect(getAnnotation(0),new Rectangle(-15340,13000,29850,1800));
-*setDisplay(getAnnotation(1), true);
-*setTextString(getAnnotation(1), "annotation1");
-*setRect(getAnnotation(1),new Rectangle(15340,13000,29850,1800));
-*setDisplay(getReferenceLineY1(0),true);
-*setReferenceLineValueY1(0,80000.0);
-*setLineWidth(getReferenceLineY1(0),2);
*END
*GRAPH_JS
});
chart.registerEvent(chartEvent, 'click', 'background');
-*chart.registerEvent(chartEvent, 'mouseover', 'background');
-*chart.registerEvent(chartEvent, 'mouseout', 'background');
chart.registerEvent(chartEvent, 'click', 'xaxis');
-*chart.registerEvent(chartEvent, 'mouseover', 'xaxis');
-*chart.registerEvent(chartEvent, 'mouseout', 'xaxis');
chart.registerEvent(chartEvent, 'click', 'yaxis');
-*chart.registerEvent(chartEvent, 'mouseover', 'yaxis');
-*chart.registerEvent(chartEvent, 'mouseout', 'yaxis');
chart.registerEvent(chartEvent, 'click', 'y2axis');
-*chart.registerEvent(chartEvent, 'mouseover', 'y2axis');
-*chart.registerEvent(chartEvent, 'mouseout', 'y2axis');
chart.registerEvent(chartEvent, 'click', 'legend');
-*chart.registerEvent(chartEvent, 'mouseover', 'legend');
-*chart.registerEvent(chartEvent, 'mouseout', 'legend');
chart.registerEvent(chartEvent, 'click', 'title');
-*chart.registerEvent(chartEvent, 'mouseover', 'title');
-*chart.registerEvent(chartEvent, 'mouseout', 'title');
chart.registerEvent(chartEvent, 'click', 'subtitle');
-*chart.registerEvent(chartEvent, 'mouseover', 'subtitle');
-*chart.registerEvent(chartEvent, 'mouseout', 'subtitle');
chart.registerEvent(chartEvent, 'click', 'series');
-*chart.registerEvent(chartEvent, 'mouseover', 'series');
-*chart.registerEvent(chartEvent, 'mouseout', 'series');
chart.registerEvent(chartEvent, 'click', 'footnote');
-*chart.registerEvent(chartEvent, 'mouseover', 'footnote');
-*chart.registerEvent(chartEvent, 'mouseout', 'footnote');
-*chart.registerEvent(chartEvent, 'click', 'annotation');
-*chart.registerEvent(chartEvent, 'mouseover', 'annotation');
-*chart.registerEvent(chartEvent, 'mouseout', 'annotation');
-*chart.registerEvent(chartEvent, 'click', 'reference');
-*chart.registerEvent(chartEvent, 'mouseover', 'reference');
-*chart.registerEvent(chartEvent, 'mouseout', 'reference');
-*chart.registerEvent(chartEvent, 'click', 'chart');
-*chart.registerEvent(chartEvent, 'mouseover', 'chart');
-*chart.registerEvent(chartEvent, 'mouseout', 'chart');
chart.set({
*END
INCLUDE=IBFS:/FILE/IBI_HTML_DIR/javaassist/intl/EN/ENIADefault_combine.sty,$
TYPE=REPORT, TITLETEXT=JSCHART Events, $
ENDSTYLE
END
-RUN
TThis message has been edited. Last edited by: Tony A,
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004