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'm loking for a way to display a graph with stacked bars or lines, where the series are NOT added (similar to Microsoft Excel).This message has been edited. Last edited by: Kerry,
WF 7.6.9 PMF 5.1.3 BID 7.6.9
Win XP HTML, PDF, Excel, PowerPoint
Posts: 69 | Location: Germany | Registered: September 21, 2009
I got this technique from a Summit 2009 presentation and had actually presented part of it at a monthly consulting session I did. I learned a lot from going through the presentation.
What I did was make a series out of the total value and held it along with the other values. It became series 3 in the example. I turned off the background color and border color for this series. I did this all in the Advanced Graph Assistant.
You will probably need to use custom placement for the series values but hopefully this will give you some ideas for solving your problem:
-* File car_stacked_bar_sum_off.fex
TABLE FILE CAR
SUM DEALER_COST
RETAIL_COST
SALES
COMPUTE TOT_DOLLARS/D8=C1+C2+C3;
BY COUNTRY
ON TABLE HOLD AS HTOTAL FORMAT ALPHA
END
-*? HOLD HTOTAL
-*-EXIT
-*INTERNAL_PROPERTIES$SampleData=false;OBJECTID=GLOBAL
-*INTERNAL_PROPERTIES$GlobalRecordLimit=500;OBJECTID=GLOBAL
-*INTERNAL_PROPERTIES$FieldDisplayMode=label;OBJECTID=GLOBAL
-*INTERNAL_PROPERTIES$PrefixDisplayMode=;OBJECTID=GLOBAL
GRAPH FILE HTOTAL
-* Created by Advanced Graph Assistant
SUM HTOTAL.HTOTAL.DEALER_COST
HTOTAL.HTOTAL.RETAIL_COST
HTOTAL.HTOTAL.SALES
HTOTAL.HTOTAL.TOT_DOLLARS
BY HTOTAL.HTOTAL.COUNTRY
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 VBRSTK1
ON GRAPH SET GRAPHSTYLE *
setTemplateFile("/images/tdg/template/IBISouthWestern.txt");
setReportParsingErrors(false);
setSelectionEnableMove(false);
setDepthRadius(5);
setTransparentBorderColor(getChartBackground(),true);
setPlace(true);
setDisplay(getDataText(),true);
setStackedDataValueSum(false);
setMarkerShape(getSeries(3),0);
setSeriesType(getSeries(3),0);
setDataTextPosition(4);
setTransparentFillColor(getSeries(3),true);
setTransparentBorderColor(getSeries(3),true);
setDisplay(getDataTextStackedTotalOnTop(),false);
ENDSTYLE
END