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     [CLOSED] Data over the graph bars, X axis Label and Y axis Label

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Data over the graph bars, X axis Label and Y axis Label
 Login/Join
 
Member
posted
Hi there,

In my graph, I want font size 8 and bold for
1) data over the bars in the graph,
2) X axis labels, and
3) Y axis labels.

I don't know how to do the 1st one above. Here is the code I used to do the 2nd and 3rd one, but doesn't work. Can anybody please help?

setFontSizeAbsolute(getY1Label(0),true);
setFontSize(getY1Label(0),8);
setFontStyle(getY1Label(),2);
setDataTextDisplay(true);
setTextJustHoriz(getDataText(),1);
setFontSizeAbsolute(getDataText(),true);
setFontSize(getDataText(),8);
setFontSizeAbsolute(getO1Label(0),true);
setFontSize(getO1Label(0),8);
setFontStyle(getO1Label(),2);

This message has been edited. Last edited by: Kerry,


WebFOCUS 7.6.10
Windows/XP
Database: Oracle
Output: Excel
 
Posts: 20 | Registered: June 05, 2006Report This Post
Master
posted Hide Post
Add these methods to the end of your graph request, only then text formating will have an impact.

setPlaceResize(getO1Label(),0);
setPlaceRotate(getO1Label(),0);
setPlaceAlign(getO1Label(),0);
setPlaceWordWrap(getO1Label(),0);
setPlaceResize(getY1Label(),0);
setPlaceRotate(getY1Label(),0);
setPlaceAlign(getY1Label(),0);
setPlaceWordWrap(getY1Label(),0);
setPlaceResize(getDataText(),0);
setPlaceRotate(getDataText(),0);
setPlaceAlign(getDataText(),0);
setPlaceWordWrap(getDataText(),0);
-*setPlaceSkip(getO1Label(), 0); 
setPlace(true);


The Place property enables or disables the automatic graph layout manager. To know more about Place refer Chaper 4. Properties of WebFOCUS Graphics.

This message has been edited. Last edited by: Ram Prasad E,
 
Posts: 542 | Location: Dearborn, MI | Registered: June 03, 2009Report 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     [CLOSED] Data over the graph bars, X axis Label and Y axis Label

Copyright © 1996-2020 Information Builders