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 sorry if this seems like a stupid question, but I'm trying to create a graph that should look like a vertical dual axis stacked bar graph. Can someone show me an example of a fex file that produces one of these graphs? I'd greatly appreciate it!
Posts: 46 | Location: Taylor University in Upland Indiana | Registered: May 20, 2003
Below is an example of a fex. You can also create this type of graph using the HTML Graph Assistant. Select Bar from the drop-down list on the Graph Types tab and then select Dual-Axis Stacked, and the Vertical option button.
I hope this helps. Jennifer
-* Created by Graph Assistant -* HTML Tool -* Created by Graph Assistant -* FF Line do not change this line! Field Name -* FF Line do not change this line! Alias -* FF Line do not change this line! Format -* FF Line do not change this line! Segment -* FF Line do not change this line! displayTree=0 GRAPH FILE CENTORD SUM CENTORD.INVSEG.QTY_IN_STOCK CENTORD.PINFO.QUANTITY CENTORD.INVSEG.LINE_COGS ACROSS CENTORD.OINFO.PLANT ON GRAPH SET LOOKGRAPH VBRSTK2 ON GRAPH SET 3D OFF ON GRAPH SET BARNUMB OFF ON GRAPH SET GRID ON ON GRAPH SET GRAPHEDIT SERVER ON GRAPH SET VZERO ON ON GRAPH SET GRAPHSTYLE * setSeriesType(0,1); setAxisAssignment(0,0); setSeriesType(1,1); setAxisAssignment(1,1); setSeriesType(2,1); setAxisAssignment(2,0); setLegendDisplay(true); setLegendMarkerPosition(0); setMarkerDisplay(true); setUseSeriesShapes(false); setConnectLineMarkers(false); setConnectScatterMarkers(false); setO1LabelDisplay(true); setO1AxisSide(0); setO1MajorGridDisplay(true); setO1MajorGridStyle(0); setO1MinorGridDisplay(false); setY1LabelDisplay(true); setY1AxisSide(0); setTextFormatPreset(getY1Label(),1); setY1MajorGridDisplay(true); setY1MajorGridStyle(0); setY1MinorGridDisplay(false); setY2LabelDisplay(true); setY2AxisSide(1); setTextFormatPreset(getY2Label(),1); setY2MajorGridDisplay(true); setY2MajorGridStyle(0); setY2MinorGridDisplay(false); setFontSize(getO1Label(),12); setFontSizeAbsolute(getO1Label(),true); setPlace(true); ENDSTYLE END -* End Graph Assistant