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.
Is there a setting for a default font type (Arial Unicode MS) or do you have to set it individually for every report/graph?This message has been edited. Last edited by: Kerry,
Posts: 118 | Location: Wisconsin | Registered: January 16, 2008
You can set your desired font in an external style sheet file and use that across all of your reports.
TABLE FILE blah
.
.
ON TABLE SET STYLE MYSTYLE
.
Inside of MYSTYLE.STY you'd have all of the standard styling you want for your site. If future changes are required, just change the contents of MYSTYLE.STY and every report that uses it will be automatically "aware" of the changes.
Another way would be to have all of your default settings in an external file which can be -INCLUDEd in your code. This is the approach I personally use as it allows to set one's personalised style on a report-by-report basis while still keeping some higher-level settings.
TABLE FILE blah
.
.
ON TABLE SET STYLE *
$ Set default styling
-INCLUDE def_style
$ Add report-specific styling here
TYPE=DATA, COLUMN=N1, STYLE=blah, $
..
def_style.fex would contain those settings you want applicable to every report/graph (such as FONT).
When it comes to HTML, the default output is handled directly by the user's internet browser. There is *no* specific font setting generated by WebFOCUS.
Try it yourself. Create a dummy HTML report with no style sheet definitions. Then use your internet browser's "view source" facility to analyse the HTML code built by WebFOCUS. You should not find any CSS class or <FONT> tag there. WebFOCUS relies entirely on the user's internet browser defaults.