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 graph report that is running but the x and y axis labels and data values on top of each bars are too bold(style). I don't seem to get how to control the formating of these values and labels. I wanted to change them to Arial and normal instead of bold.
Please, any suggestion on how this can be done?This message has been edited. Last edited by: umun,
Problem: How to make the font for the X axis, Y axis and datatext the same size and the same style in a waterfall graph.
Solution: The following stylesheet command will change the style of each component: setFontStyle(getXXXXXXX(),0); Where XXXXXX is either the X axis, Y axis or datatext.
The possible styles are listed below: 0 = Plain 1 = Italic 2 = Bold 3 = Italic/Bold 4 = Underline 5 = Italic/Underline 6 = Bold/Underline 7 = Bold/Italic/Underline
The code below will change the size of your font: setFontSizeAbsolute(getO1Label(0),true); setFontSize(getO1Label(0),12);
Kerry Zhan Focal Point Moderator Information Builders, Inc.
Posts: 1948 | Location: New York | Registered: November 16, 2004
I want to make the datavalues to have 2 decimal places. Currently, a value of 0.2301% is being shown as 0%. Please, any hint on how I can make the datavalue to be like 0.23% instead of 0%.
Problem: How to make the font for the X axis, Y axis and datatext the same size and the same style in a waterfall graph.
Solution: The following stylesheet command will change the style of each component: setFontStyle(getXXXXXXX(),0); Where XXXXXX is either the X axis, Y axis or datatext.
The possible styles are listed below: 0 = Plain 1 = Italic 2 = Bold 3 = Italic/Bold 4 = Underline 5 = Italic/Underline 6 = Bold/Underline 7 = Bold/Italic/Underline
The code below will change the size of your font: setFontSizeAbsolute(getO1Label(0),true); setFontSize(getO1Label(0),12);
Please, how can I make the datatext have 2 decimal places like 0.23%