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.
Are you wanting to create a chart for each across item? can you give some details on want you are trying to accomplish. FLEX works a little different as it is an Active Report.
I think that for FLEX, you should not use ACROSS but BY:
-* File graph01.fex
GRAPH FILE CAR
SUM DEALER_COST
BY COUNTRY
ON GRAPH SET LOOKGRAPH VBAR
ON GRAPH SET GRAPHEDIT SERVER
ON GRAPH SET BARNUMB OFF
ON GRAPH SET 3D ON
ON GRAPH SET VZERO ON
ON GRAPH SET GRID ON
ON GRAPH PCHOLD FORMAT FLEX
END
See what happens when you use both BY and ACROSS
GRAPH FILE CAR
SUM DEALER_COST
BY COUNTRY
ACROSS SEATS
ON GRAPH SET LOOKGRAPH VBAR
ON GRAPH SET GRAPHEDIT SERVER
ON GRAPH SET BARNUMB ON
ON GRAPH SET 3D ON
ON GRAPH SET VZERO ON
ON GRAPH SET GRID OFF
ON GRAPH PCHOLD FORMAT FLEX
END
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
Hi Danny, I tried your code .This is the sample code I tried. Legend names are displaying as SUM.COST, SUM.COST [1], SUM.COST [2], SUM.COST [3] and SUM.COST [4] instead of displaying the ACROSS column values for Country (ENGLAND, FRANCE ..etc as Legend names). GRAPH FILE CAR SUM DEALER_COST AS 'COST' ACROSS COUNTRY AS 'COUNTRY' BY SEATS AS 'SEATS' ON GRAPH SET LOOKGRAPH VBAR ON GRAPH SET GRAPHEDIT SERVER ON GRAPH SET BARNUMB ON ON GRAPH SET 3D ON ON GRAPH SET VZERO ON ON GRAPH SET GRID OFF ON GRAPH PCHOLD FORMAT FLEX END
I am also having similar issue and have opened a case with IBI without any good luck..PLease post the solution if you come across one. My code is as follows: TABLE FILE A_ELIG_GRAPH_TESTDATA PRINT A_ELIG_GRAPH_TESTDATA.A_ELIG_GRAPH_TESTDATA.TOT_CNT BY A_ELIG_GRAPH_TESTDATA.A_ELIG_GRAPH_TESTDATA.REPORT_TYPE ACROSS A_ELIG_GRAPH_TESTDATA.A_ELIG_GRAPH_TESTDATA.YEAR_NAME WHERE A_ELIG_GRAPH_TESTDATA.A_ELIG_GRAPH_TESTDATA.GROUP_TYPE EQ 'Gender'; ON TABLE SET PAGE-NUM NOLEAD ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT AHTML ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * $ TYPE=REPORT, GRAPHCOLOR='GREEN', GRAPHCOLORNEG='RED', $ TYPE=REPORT, LINES-PER-PAGE=20, ARGRAPHENGINE=FUSION, REPORT-VIEW=FUSIONCHART, CHART-TYPE=MSColumn3D, $
Has anyone solved this issue? I'm currently having the same problem with my legend displaying as SUM.COLUMN[1], SUM.COLUMN[2], and SUM.COLUMN[3] instead of their respective ACROSS values (CAR, PLANE, TRAIN... etc. as Legend names).
WebFOCUS 7.7.03 Dev Studio 7.7.03 Windows 7 ALL Outputs
Posts: 14 | Location: Upland, IN | Registered: March 26, 2013
Has anyone found a solution to this issue? Can't seem to get active reports to work properly while using an ACROSS. Legend displays SUM.COLUMN[1], SUM.COLUMN[2], SUM.COLUMN[3]....as well