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 have a dual axis stacked bar graph that I'm just about finished with. But, I'd like to have the Y1 and Y2 axis max value, min value and scale be the same. Can someone tell me how I can get the Y2 axis to match the Y1 axis?
Posts: 46 | Location: Taylor University in Upland Indiana | Registered: May 20, 2003
we normally reset the scale and grid steps this way, in the ON GRAPH SET GRAPHSTYLE * section of the report(you do have to edit your code to do so) I beleive that the min and max will follow suit. -*major grid setting the scale to 2 setY1MajorGridStepAuto(false); setY1MajorGridStep(2); setY2MajorGridStepAuto(false); setY2MajorGridStep(2); -*Minor Grid setting the scale to .1 setY1MinorGridStepAuto(false); setY1MinorGridStep(.1); setY2MinorGridStepAuto(false); setY2MinorGridStep(.1);
Posts: 18 | Location: Omaha | Registered: September 15, 2004
we normally reset the scale and grid steps this way, in the ON GRAPH SET GRAPHSTYLE * section of the report(you do have to edit your code to do so) I beleive that the min and max will follow suit. -*major grid setting the scale to 2 setY1MajorGridStepAuto(false); setY1MajorGridStep(2); setY2MajorGridStepAuto(false); setY2MajorGridStep(2); -*Minor Grid setting the scale to .1 setY1MinorGridStepAuto(false); setY1MinorGridStep(.1); setY2MinorGridStepAuto(false); setY2MinorGridStep(.1);
Posts: 18 | Location: Omaha | Registered: September 15, 2004
Right now, the Y1 axis is being automatically set...max, min and step. I want that still to happen because there are different possible groups that will be counted in this report depending on what is selected by the user. I'd like to find whatever the Y1 axis ends up being and then set the Y2 axis to be the same. This is what I can't get to work right now.
Posts: 46 | Location: Taylor University in Upland Indiana | Registered: May 20, 2003