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 am new to WF 8. Can anyone please provide working examples of WebFOCUS 8 Interactive or animated graphs with CAR or any similar library databases? Or please provide a URL to examples.
Also, client is asking for this functionality. Assume there is a line graph with 8 series. He wants an option to select/de-select few series from the legend and graph should refresh itself showing only those series selected. I have seen similar functionality with Highcharts. But is it possible out of box with WebFOCUS 7 or 8?
Thank you.This message has been edited. Last edited by: BI_Developer,
As per your client, you can tell them about InfoDiscovery , where you can give them their desire features. "an option to select/de-select few series from the legend and graph should refresh itself showing only those series selected."
Basically, this feature is called as LASSO feature.
You can exclude columns when you create a graph from an active report (refresh issue in some versions) by clicking on them and choosing "exclude from graph" in the options.
Also, if you use Active Reports as your output when creating a graph you can lasso in on a subset of data and filter the results that way.
Kevin Patterson Appalachian State University WebFOCUS 7.7.03 Windows, All Outputs
We don't have license for InfoAssist etc. When I just develop graph from App Studio, does HTML5 provides animations? I mean animations like raising bars and moving lines that happens in Active graphs? I would appreciate if any code is provided with a CAR file for an animated graph. ThanksThis message has been edited. Last edited by: BI_Developer,
This is a basic out of the box graph using car. The JSCHART Format is what will provide HTML5 output with animations. This is the most basic using the GUI.
ENGINE INT CACHE SET ON
-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
SUM CAR.BODY.SALES
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 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 VBAR
ON GRAPH SET AUTOFIT ON
ON GRAPH SET STYLE *
*GRAPH_SCRIPT
setPieDepth(0);
setPieTilt(0);
setDepthRadius(0);
setCurveFitEquationDisplay(false);
setPlace(true);
*END
INCLUDE=IBFS:/FILE/IBI_HTML_DIR/javaassist/intl/EN/ENIADefault_combine.sty,$
TYPE=REPORT, TITLETEXT=&WF_TITLE.QUOTEDSTRING, PAGESIZE=TABLOID, $
*GRAPH_SCRIPT
setReportParsingErrors(false);
setSelectionEnableMove(false);
*END
ENDSTYLE
END
-RUN
As for being able to select what series you want to add, you can use variables for that and create checkboxes in your HTML that will then pass the variables to use to your fex.
Eric Woerle 8.1.05M Gen 913- Reporting Server Unix 8.1.05 Client Unix Oracle 11.2.0.2
Posts: 750 | Location: Warrenville, IL | Registered: January 08, 2013
May be its version problem. I used the same eric posted but not getting animations. I did a sample from scratch and code was same but no animation. Any suggestions?