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.
How do I create a smooth line graph instead of absolute values? And also, how do I set the values for the Y axis. For example, I want the y axis to go from 10,000 to -10,000 incremented by 1000. Thanks
Posts: 25 | Location: VA | Registered: May 13, 2005
'absolute value' means the positive of any negative number. the ABS(-1)=1, for ex. so perhaps you mean trend line, the way you can get excel to calculate the trend line for you ; alas, i think you have to create the trend line first yourself. as for the graph styling, if you do a search on this board for posts from 'JG' (member# 1224), he has answered those questions for me and for others; he's the graph whizkid! You'll learn alot from reading him.
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
I searched and did not see anything about setting the values of and increments for the y axis. If he has answered this for you woulod you mindtelling me how to do it.
Posts: 25 | Location: VA | Registered: May 13, 2005
Here are some of the commands: for increments: setGridStep(getY1MajorGrid(),10000); setGridStepAuto(getY1MajorGrid(),false); for top of scale: setScaleMax(getY1Axis(),1000); setScaleMaxAuto(getY1Axis(),false); for bottom of scale setScaleMinAuto(getY1Axis(),false); setScaleMin(getY1Axis(),-10000);
Posts: 391 | Location: California | Registered: April 14, 2003