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 have a file with many fields that are either '1' or '0' and need to produce a sieries of Graphs. Not a problem simply do a sum of the columns to graph. Kicker is I need to display the percentage of column 1 to column 2 and display this percentage on the report. In other words if column 1 is the number of cases of oranges and column 2 is the total cases of all fruit the percentage I want to display is CASES of ORanges / Total Cases. Now they would like this percentage displayed above the 2 columns. Not another column just the number. Any sugestions.
As another question I once saw a Manuel that listed and described all the styling for Graphs anyone no the name and or a link to the manual.
ThanksThis message has been edited. Last edited by: Dgraff,
Duane
WebFOCUS 8.0.7 DS 8.0.7 AS 8.0.7 Windows Output: Excel, HTML, PDF, AHTML,Mobile In Focus 1982
By playing a bit with the DS advanced graphics, I came up with the following, using the CAR file. I suppose you could adapt this to your problem:
-* File Duane1.fex
-SET &ECHO=ALL;
SET HOLDLIST=PRINTONLY, CENT-ZERO=ON
DEFINE FILE CAR
SALES10/I3=IF SALES GT 10000 THEN 1 ELSE 0;
SALESC/I3 WITH SALES = 1;
END
TABLE FILE CAR
SUM
COMPUTE PC/D6.2%=SALES10 / SALESC * 100;
BY COUNTRY NOPRINT
ON TABLE SAVE
END
-RUN
-SET &RECS=&LINES;
-REPEAT #GETPCT FOR &I FROM 1 TO &RECS;
-READ SAVE,&PC.&I
-TYPE &PC.&I.%
-#GETPCT
-RUN
-*
-*INTERNAL_PROPERTIES$fieldDisplayMode=label;OBJECTID=GLOBAL
-*INTERNAL_PROPERTIES$enablePreview=true;OBJECTID=GLOBAL
-*INTERNAL_PROPERTIES$prefixDisplayMode=;OBJECTID=GLOBAL
-*INTERNAL_PROPERTIES$GlobalRecordLimit=500;OBJECTID=GLOBAL
-*INTERNAL_PROPERTIES$SampleData=false;OBJECTID=GLOBAL
GRAPH FILE CAR
-* Created by Advanced Graph Assistant
SUM CAR.BODY.SALES10
CAR.BODY.SALESC
BY CAR.ORIGIN.COUNTRY
ON GRAPH PCHOLD AS HOLD FORMAT PNG
ON GRAPH SET BARNUMB OFF
ON GRAPH SET 3D OFF
ON GRAPH SET VZERO ON
ON GRAPH SET GRID ON
ON GRAPH SET HAXIS 770
ON GRAPH SET VAXIS 405
ON GRAPH SET UNITS PIXELS
ON GRAPH SET LOOKGRAPH VBAR
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 0
ON GRAPH SET GRLEGEND 0
ON GRAPH SET GRXAXIS 1
ON GRAPH SET GRAPHSTYLE *
setReportParsingErrors(false);
setSelectionEnableMove(false);
setMarkerDisplay(true);
setConnectLineMarkers(false);
setConnectScatterMarkers(false);
setO1LabelDisplay(true);
setO1AxisSide(0);
setO1MajorGridDisplay(true);
setO1MajorGridStyle(0);
setO1MinorGridDisplay(false);
setAxisAssignment(0,0);
setAxisAssignment(1,0);
setY1LabelDisplay(true);
setY1AxisSide(0);
setY1MajorGridDisplay(true);
setY1MajorGridStyle(0);
setY1MinorGridDisplay(false);
setTextFormatPreset(getY1Label(),-1);
setTextFormatPattern(getY1Label(),"#.##");
setPieFeelerTextDisplay(1);
setPieLabelDisplay(0);
setTextFormatPreset(getPieSliceLabel(),1);
setRiserBorderMode(1);
setSeriesDefaultTransparentBorderColor(true);
setUseSeriesBorderDefaults(true);
setLegendDisplay(true);
setFontSizeAbsolute(getY1Title(),true);
setFontSizeAbsolute(getY1Label(),true);
setFontSizeAbsolute(getY2Title(),true);
setFontSizeAbsolute(getY2Label(),true);
setFontSizeAbsolute(getO1Title(),true);
setPlace(true);
-REPEAT #ANNOT FOR &I FROM 1 TO &RECS;
-SET &J=&I - 1;
-SET &XPOS=-16000 + 5800 * &J;
setTextString(getAnnotation(&J),"&PC.&I.%");
setDisplay(getAnnotation(&J),true);
setRect(getAnnotation(&J),new Rectangle(&XPOS,11636.0,8000.0,2036.0));
-#ANNOT
ENDSTYLE
ON GRAPH SET STYLE *
TYPE=REPORT, FONT='TIMES NEW ROMAN', SIZE=10, GRID=OFF, SQUEEZE=ON, $
ENDSTYLE
END
This message has been edited. Last edited by: Danny-SRL,
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006