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.
hi i am able to display count value of the field in graph but i am not able to display total count value in graph as first series. Please find below the sample coude of the report.
DEFINE FILE CAR CARCNT/I4=1 END
GRAPH FILE CAR -* Created by Advanced Graph Assistant SUM CNT.CAR.BODY.RETAIL_COST BY CAR.COMP.CAR HEADING " TOTAL COUNT VALUE:ON GRAPH PCHOLD AS HOLD FORMAT PNG ON GRAPH SET GRAPHDEFAULT OFF ON GRAPH SET GRMERGE ADVANCED ON GRAPH SET GRMULTIGRAPH 0 ON GRAPH SET GRLEGEND 0 ON GRAPH SET GRXAXIS 1 ON GRAPH SET HAXIS 770 ON GRAPH SET VAXIS 405 ON GRAPH SET UNITS PIXELS ON GRAPH SET LOOKGRAPH VBAR ON GRAPH SET GRAPHSTYLE * setTemplateFile("/images/tdg/template/IBISouthWestern.txt"); setReportParsingErrors(false); setSelectionEnableMove(false); setDepthRadius(5); setPlace(true); setTransparentBorderColor(getSeries(0),true); setTransparentBorderColor(getSeries(1),true); setTransparentBorderColor(getSeries(2),true); setTransparentBorderColor(getSeries(3),true); setTransparentBorderColor(getSeries(4),true); setTransparentBorderColor(getSeries(5),true); setTransparentBorderColor(getSeries(6),true); setTransparentBorderColor(getSeries(7),true); setTransparentBorderColor(getSeries(8),true); setTransparentBorderColor(getSeries(9),true); setTransparentBorderColor(getSeries(10),true); setSeriesType(0,0); setTextString(getLegendLabel(0),"THIS IS VENKAT setDisplay(getLegendLabel(0),true); setDisplay(getDataText(),true); setData(0,); ENDSTYLE END
END
If anyone give the solution for this problem ,
its more help to me
Thanks suresh
WebFocus 7.1.6
Posts: 6 | Location: chennai | Registered: June 03, 2008
Do you mean you want the total count to be the first bar of your graph? If so, then you can do this with the aid of hold files.
DEFINE FILE CAR
CARTOT/A16=' ALL';
END
TABLE FILE CAR
SUM CNT.CAR.BODY.RETAIL_COST
BY CARTOT
ON TABLE HOLD
END
-SET &RECS = &RECORDS;
FILEDEF HOLD DISK HOLD.FTM (APPEND
TABLE FILE CAR
SUM CNT.CAR.BODY.RETAIL_COST
BY CAR.COMP.CAR
ON TABLE HOLD
END
GRAPH FILE HOLD
-* Created by Advanced Graph Assistant
SUM RETAIL_COST
BY CAR
HEADING
" TOTAL COUNT VALUE: &RECS"
ON GRAPH PCHOLD AS HOLD FORMAT PNG
ON GRAPH SET GRAPHDEFAULT OFF
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 0
ON GRAPH SET GRLEGEND 0
ON GRAPH SET GRXAXIS 1
ON GRAPH SET HAXIS 770
ON GRAPH SET VAXIS 405
ON GRAPH SET UNITS PIXELS
ON GRAPH SET LOOKGRAPH VBAR
ON GRAPH SET GRAPHSTYLE *
setTemplateFile("/images/tdg/template/IBISouthWestern.txt");
setReportParsingErrors(false);
setSelectionEnableMove(false);
setDepthRadius(5);
setPlace(true);
setTransparentBorderColor(getSeries(0),true);
setTransparentBorderColor(getSeries(1),true);
setTransparentBorderColor(getSeries(2),true);
setTransparentBorderColor(getSeries(3),true);
setTransparentBorderColor(getSeries(4),true);
setTransparentBorderColor(getSeries(5),true);
setTransparentBorderColor(getSeries(6),true);
setTransparentBorderColor(getSeries(7),true);
setTransparentBorderColor(getSeries(8),true);
setTransparentBorderColor(getSeries(9),true);
setTransparentBorderColor(getSeries(10),true);
setSeriesType(0,0);
setDisplay(getLegendLabel(0),true);
setDisplay(getDataText(),true);
setData(0,);
ENDSTYLE
END
This will produce the total as the first bar in the graph. If this is not what you want it to be, then please explain further.
Hope this helps...
GamP
- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007
I'm not quite sure what you mean but can't you do a SUM CARCNT in addtion to what you already have?
Another option is to do your summing ahead of time, hold it, and do the graph on the hold file.
Now a couple of housekeeping things since you are a new poster.
Please update your profile signature with your products, releases, and platforms so that we can better help you. Check the signature reminder post for details.
Also post your code inside the code brackets >, the rightmost icons above the reply box. We didn't get your whole graph.
But we do appreciate you doing it on the CAR file.
here is a sample code, in that getting total count value of the field as a first row in tabular report. like that i want to display total count value of the field as a first bar and also display individual count values of the field in graph.
DEFINE FILE CAR CARCNT/I4 =1; END TABLE FILE CAR SUM CNT.CAR AS ' '
BY COUNTRY AS ' ' HEADING "TOTAL RECORDS ON REPORT < TOT.CARCNT" END
Please do help in this regard.
Thanks sure
WebFocus 7.1.6
Posts: 6 | Location: chennai | Registered: June 03, 2008
DEFINE FILE CAR CARCNT/I4 =1; END TABLE FILE CAR SUM CNT.CAR BY COUNTRY ON TABLE HOLD AS DATA END -RUN FILEDEF DATA DISK DATA.FTM (APPEND -RUN TABLE FILE CAR SUM COMPUTE COUNTRY/A10=' '; CNT.CAR ON TABLE HOLD AS DATA END -RUN