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.
This works great but it wraps at 7 characters. Is there any method to have it wrap at a specific length. 7 Characters is too short.This message has been edited. Last edited by: Kerry,
Posts: 118 | Location: Wisconsin | Registered: January 16, 2008
This has the same effect. Wraping is supposed to take place based on breaking at a space, however if spaces are not available the I believe it breaks based on available axis / number of labels to avoid overlap.
If you want to break in different location then you need to manually generate the labels and embed \n into the string for example 'The cat\nsat on the mat'
displays as
The cat sat on the mat
To see how to generate your own labels look at the following post
Can someone help me try to create a bar graph with the car file using either warranty or standard. Those are the only fields that have data long enough to wrap but I can't use any fields available for the X axis. The error I receive is ALL VERB OBJECTS MUST BE IN THE SAME PATH AS THEIR SORT FIELDS. So as far as I can tell you can't use either of those fields in a bar graph.
Posts: 118 | Location: Wisconsin | Registered: January 16, 2008
Since I can't use the wizard I am unsure of the syntax. The error is the same as before. ALL VERB OBJECTS MUST BE IN THE SAME PATH AS THEIR SORT FIELDS
TABLE FILE CAR SUM WEIGHT STANDARD ON TABLE HOLD AS WFGRAPH END
GRAPH FILE WFGRAPH SUM WEIGHT BY STANDARD ON GRAPH PCHOLD AS HOLD FORMAT PNG ON GRAPH SET GRAPHDEFAULT OFF ...
Posts: 118 | Location: Wisconsin | Registered: January 16, 2008
TABLE FILE CAR
PRINT WEIGHT
STANDARD
ON TABLE HOLD AS WFGRAPH FORMAT ALPHA
END
GRAPH FILE WFGRAPH
SUM WEIGHT
ACROSS STANDARD
ON GRAPH PCHOLD AS HOLD FORMAT PNG
ON GRAPH SET GRAPHDEFAULT OFF
END