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] Overlapping graphs in PDF compound report

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Overlapping graphs in PDF compound report
 Login/Join
 
Gold member
posted
Is it possible in compound PDF tool to create a bar graph with an overlapping line graph on top of it? I have created reports with different types of graphs on the same page, but don't know whether overlapping different types of graphs is possible.
Thank you.

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


7.6.9, XP
 
Posts: 60 | Location: Cary, NC | Registered: February 19, 2008Report This Post
<JG>
posted
WebFOCUS generated graphs are not transparent so overlapping them means the top one will hide any underneath.

You can however plot multiple series with different output styles on the same graph.

If you are using the advanced graph assistant in the chart editor select the series you want to change in the left hand pane then on the right pane click on Default next to Series Type and select the type you want either bar, line or area.

If you are changing the code manually the the API call is setSeriesType(getSeries(n),m);

where n is the number of the series (1st is 0 because it's java) and m is the type where
0 = Line
1 = bar
2 = marker
3 = area
 
Report This Post
Master
posted Hide Post
The following allowed me to plot an average (5) on top of a bar graph across region (1-4)
setCustomDataText(getSeries(0), true);
setCustomDataText(getSeries(1), true);
setCustomDataText(getSeries(2), true);
setCustomDataText(getSeries(3), true);
setCustomDataText(getSeries(4), true);
setCustomDataText(getSeries(5), true);
setDisplay(getDataText(0), false);
setDisplay(getDataText(1), false);
setDisplay(getDataText(2), false);
setDisplay(getDataText(3), false);
setDisplay(getDataText(4), false);
setDisplay(getDataText(5), true);
 


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
  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] Overlapping graphs in PDF compound report

Copyright © 1996-2020 Information Builders