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 attempting to do a 3D graph that is merged (grmerge on). When I turn it off, I magically get my grid lines. If I leave it on, they disappear making the graph really hard to follow. I am using WF 5.3.3 in the MRE vs dev studio. Here is my code:
GRAPH FILE 4GRAPH1B HEADING "Count of students enrolled in courses by the courses college" SUM STUDCNT AS 'STUDENT COUNT' ACROSS COURSE_COLLEGE_DESC AS 'COURSE COLLEGE' BY ACADEMIC_YEAR AS 'ACADEMIC_YEAR' ON GRAPH SET LOOKGRAPH 3D_BAR ON GRAPH SET 3D OFF ON GRAPH SET BARNUMB ON ON GRAPH SET GRID ON ON GRAPH SET GRAPHEDIT OFF ON GRAPH SET GRMERGE ON ON GRAPH SET VZERO OFF ON GRAPH SET GRAPHSTYLE * setSeriesType(0,1); setLegendDisplay(true); setLegendMarkerPosition(0); setMarkerDisplay(true); setUseSeriesShapes(false); setConnectLineMarkers(false); setConnectScatterMarkers(false); setO1LabelDisplay(true); setO1AxisSide(0); setReverseGroups(true); setO1MajorGridDisplay(true); setO1MajorGridStyle(0); setO1MinorGridDisplay(false); setY1LabelDisplay(true); setY1AxisSide(0); setTextFormatPreset(getY1Label(),1); setY1MajorGridDisplay(true); setY1MajorGridStyle(0); setY1MinorGridDisplay(false); setPieFeelerTextDisplay(1); setTextFormatPreset(getPieSliceLabel(),1); setPieRingTotalFormat(1); setPieLabelDisplay(0); setPlace(true); ENDSTYLE ON GRAPH SET STYLE * TYPE= HEADING,LINE=1,JUSTIFY=CENTER,$ TYPE= HEADING,LINE=1,OBJECT=TEXT,ITEM=1,STYLE=BOLD,COLOR=RGB(139 0 0),$ TYPE= DATA, ACROSSCOLUMN= STUDCNT, FOCEXEC=app/level3.fex(CCD=COURSE_COLLEGE_DESC ), $ ENDSTYLE END