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.
When using JSFUSION in Active Reports, is there a way to make it so that the line chart stops showing the line value of zero when there isn't any data for it. For example I am showing a sales chart for the last 3 years. The 3rd year is not finished yet. Instead of the line stopping at August. It shows a straight line at the bottom of the chart (0) for September to December.This message has been edited. Last edited by: Jay Potter,
WebFocus 8.1.5 iSeries/Windows DB2/SQL/Access Dev Studio App Studio Maintain ReportCaster
Posts: 341 | Location: Pembroke NH/Jericho NY | Registered: June 15, 2011
I'm not sure about that. Usually if you want any control over your graph you are going to want to use the advanced graph assistant. If that meets your needs then if if you go to chart editor >> Chart >> Data labels, there is an option to show zero values which you will want to set to no.
If you must use active reports, then I would control the data that is populating the graph. Hold and filter the data before hand and the graph off of that hold (pseudo code):
TABLE FILE SALES
...
WHERE DATE is in last three years;
WHERE SALES aren't missing;
ON TABLE HOLD
END
-RUN
GRAPH FILE HOLD
...
Note this last solution will completely exclude those unfinished dates while the first solution will keep the dates but not the missing data.
WebFOCUS 7.7.03/8.0.08 Dev Studio 7.7.03/8.0.08 App Studio 8.0.08 Windows 7 ALL Outputs
Posts: 402 | Location: Upland, IN | Registered: June 08, 2012
Your are correct that the advanced graph does not try to display anything when there isn't any data. I have used that in the past. I was hoping to use active reports because they overall look cooler. The second solution did not work for me. Thanks for trying.
WebFocus 8.1.5 iSeries/Windows DB2/SQL/Access Dev Studio App Studio Maintain ReportCaster
Posts: 341 | Location: Pembroke NH/Jericho NY | Registered: June 15, 2011