Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Changing font size of the DataText

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Changing font size of the DataText
 Login/Join
 
Member
posted
Hello,

Can someone tell me if its possible to change the fontsize of the datatext.

Cheerd
Ricard
 
Posts: 8 | Registered: September 25, 2007Report This Post
Virtuoso
posted Hide Post
Richard

Would you be so kind to update your signature in your profile.
We would like to know what version you are working with etc...

And yes you can change it.
Do you use Developer Studio?




Frank

prod: WF 7.6.10 platform Windows,
databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7
test: WF 7.6.10 on the same platform and databases,IE7

 
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006Report This Post
Member
posted Hide Post
I will update my signature,
yes i use developer studio
 
Posts: 8 | Registered: September 25, 2007Report This Post
Virtuoso
posted Hide Post
Richard

if you design your report then you can use a style and you can change te font of the basic data or for some parts of the report like this

....
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
     UNITS=IN,
     PAGESIZE='Letter',
     LEFTMARGIN=0.500000,
     RIGHTMARGIN=0.500000,
     TOPMARGIN=0.500000,
     BOTTOMMARGIN=0.500000,
     SQUEEZE=ON,
     ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
     GRID=OFF,
     FONT='ARIAL',
     SIZE=9,
     COLOR='BLACK',
     BACKCOLOR='NONE',
     STYLE=NORMAL,
     RIGHTGAP=0.125000,
     TOPGAP=0.013889,
     BOTTOMGAP=0.027778,
$
TYPE=DATA,
    FONT='ARIAL',
     SIZE=11,
     BACKCOLOR=RGB(210 0 210),
$
TYPE=DATA,
     COLUMN=ROWTOTAL(*),
     STYLE=BOLD,
$
TYPE=TITLE,
     SIZE=9,
     COLOR='WHITE',
     BACKCOLOR=RGB(0 128 255),
     STYLE=BOLD,
$
....



If you copy this in one of your reports you will see how it works.




Frank

prod: WF 7.6.10 platform Windows,
databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7
test: WF 7.6.10 on the same platform and databases,IE7

 
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006Report This Post
Member
posted Hide Post
Hello,

Thanks for the info, but i need to change the data text for a graph. When you choose in Properties and settings to Show Data Values, I get the data values very small. So I would like to change the format of the data values mentioned on the series in the graph itself

Richard
 
Posts: 8 | Registered: September 25, 2007Report This Post
Expert
posted Hide Post
Richard,

There are a host of changes that you would need to make and they would all be java related within the graphstyle statements in your fex.

Search through the forum for some very good guidance on achieving this and also take the time to download a copy of the graphics manual from the IB site or the documentation link above right. It is very handy and to get good results out of your grpahs you will need to understand the various settings.

T

p.s. Please take the time to update your signature - here's how



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Virtuoso
posted Hide Post
that's a totaly different question!




Frank

prod: WF 7.6.10 platform Windows,
databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7
test: WF 7.6.10 on the same platform and databases,IE7

 
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006Report This Post
Member
posted Hide Post
Thats correct, I thought is was clear that DataText would explain the meaning. Because you can position the datatext but i can't how to change the font.
 
Posts: 8 | Registered: September 25, 2007Report This Post
Master
posted Hide Post
You may need to adjust this:
setFontSizeAbsolute(getLegendText(),true);
setAutofit(getLegendText(0),false);
setFontSize(getLegendText(0),22);


Pat
WF 7.6.8, AIX, AS400, NT
AS400 FOCUS, AIX FOCUS,
Oracle, DB2, JDE, Lotus Notes
 
Posts: 755 | Location: TX | Registered: September 25, 2007Report This Post
Member
posted Hide Post
Hello,

Unfortunately that didnot work.

Cheers Richard
 
Posts: 8 | Registered: September 25, 2007Report This Post
Expert
posted Hide Post
Since we don't know what WebFOCUS release you are on or what Operating System you are on,
here's a few link's which will assist you and us...

Profile

Fonts

Graphical Tools


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe
 
Posts: 1972 | Location: Centennial, CO | Registered: January 31, 2006Report This Post
Expert
posted Hide Post
Very subtle Tom ... and I like it! Wink

T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Master
posted Hide Post
You may have SetPlace(true) in your graphic stylesheet.

Try this, it will be similar like the one PBrightwell mentioned except it has setPlaceResize property.

setPlaceResize(getLegendText(),0);
setFontSizeAbsolute(getLegendText(),true);
setAutofit(getLegendText(0),false);
setFontSize(getLegendText(0),22);

Note: As everybody mentioned, Please update your signature.

Hope this helps,


WFConsultant

WF 8105M on Win7/Tomcat
 
Posts: 780 | Location: Florida | Registered: January 09, 2005Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Changing font size of the DataText

Copyright © 1996-2020 Information Builders