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.
Hi, In a line graph, I have no data for a particular value E.g in a graph, say production across years. There is no data for a particular year. So currently there is a gap in the line graph due to this.
Ideally, there should be a connection between the previous and the next data values. As per the requirement, it can be an interpolated line.
So I have used the following : SET VZERO=OFF .... .... .... ON GRAPH SET GRAPHSTYLE * setFillMissingData(2); .....
However whenever the missing data condition arises, it displays some junk data. Please suggest how this can be resolved.
Please update your signature so we know what version you use. Did you download the wfgraph pdf from the IBI website? Did you try to find it here on focalpoint? the answer is there.
Frank
prod: WF 7.6.10 platform Windows, databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7 test: WF 7.6.10 on the same platform and databases,IE7
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006
Hi Frank, I tried defining a field and setting MISSING ON.
However, I defined the field as alpha:
DEFINE FILE PROD PROD_DT/A24 MISSING ON = IF PROD_DATE NE '' THEN PROD_DATE ELSE MISSING; END
The field that is to be displayed on the vertical axis is a date (PROD_DATE). So if I consider it in date format itself, I get an error saying "computational fields cannot be compared with alpha fields". Hence I tried retrieving the date in character format. Now the comparison is not a problem, but it doesn't graph since the value to be displayed on vertical axis in non-numeric.
Is there any way in which I can define a field that can hold date but not in alpha format. Please suggest how this can be resolved.