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.



Read-Only Read-Only Topic
Go
Search
Notify
Tools
Bubble Graph
 Login/Join
 
Gold member
posted
Hi I am creating a bubble graph where in the bubble sizes are adjusted against the data by default. But I would like to show the bubbles bigger enough to have a clarity. Can anyone help me out in this.

Thanks,
Srinivasan M


WF 8.0.0.9 Database : oracle

CURRENT:
WebFOCUS 8.0.0.9 /oracle 11 i

 
Posts: 51 | Registered: September 20, 2007Report This Post
Guru
posted Hide Post
What have you tried?

Have you considered multiplying the Z values by a constant?


jimster06
DevStu WF 7.6.11
W7
HTML, PDF, EXL2K
 
Posts: 252 | Location: USA | Registered: April 15, 2003Report This Post
Gold member
posted Hide Post
Hi JIM,
Thanks for the reply,below is the code which I tried with. The bubbles are very small, the user wants the bigger bubble shown by the below code should be the smallest bubble size and he wants the biggest bubble to be of greater size.


Can you pls help me in this.. I tried multiplying by constant.. Still no luck.

-* File bbbb.fex
-*INTERNAL_PROPERTIES$SampleData=false;OBJECTID=GLOBAL
-*INTERNAL_PROPERTIES$GlobalRecordLimit=500;OBJECTID=GLOBAL
GRAPH FILE car
-* Created by Advanced Graph Assistant
SUM CAR.SPECS.HEIGHT
CAR.SPECS.WIDTH
CAR.SPECS.WEIGHT
BY CAR.CARREC.MODEL
ON GRAPH SET GRAPHDEFAULT OFF
ON GRAPH SET HAXIS 770
ON GRAPH SET VAXIS 405
ON GRAPH SET UNITS PIXELS
ON GRAPH SET LOOKGRAPH BUBBLE
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 0
ON GRAPH SET GRLEGEND 1
ON GRAPH SET GRXAXIS 0
ON GRAPH PCHOLD FORMAT PNG
ON GRAPH SET GRAPHSTYLE *
setTemplateFile("/images/tdg/template/IBISouthWestern.txt");
setReportParsingErrors(false);
setSelectionEnableMove(false);
setDepthRadius(0);
setMarkerSizeDefault(60);
setPlace(true);
setSeriesType(0, 0);
setConnectLineStep(getSeries(0),false);
setSeriesType(1, 0);
setMarkerShape(getSeries(0), 2);
setMarkerShape(getSeries(1), 2);
setMarkerShape(getSeries(2), 2);
setMarkerShape(getSeries(3), 2);
setConnectLineStep(getSeries(1),false);
setSeriesType(2, 0);
setConnectLineStep(getSeries(2),false);
setSeriesType(3, 0);
setConnectLineStep(getSeries(3),false);
setSeriesType(4, 0);
setConnectLineStep(getSeries(4),false);
setSmoothLines(false);
setSmoothAreas(false);
setUseTimeScaleAxis(false);
setSeriesLooping(1);
setUseSeriesShapes(false);
setLegendSeriesStart(1);
setLegendSeriesCount(0);
setDisplay(getBeveledLegend(),false);
setReverseSeries(true);
ENDSTYLE
END


WF 8.0.0.9 Database : oracle

CURRENT:
WebFOCUS 8.0.0.9 /oracle 11 i

 
Posts: 51 | Registered: September 20, 2007Report This Post
Expert
posted Hide Post
quote:
multiplying the Z values by a constant

Jim gave you a solution above. Have you even bothered to try it? If you don't at least try then it is unlikely that you would get any further.

Short of writing the code for you (there would be a charge), you need nothing else .... apart from maybe a training course, not just in WebFOCUS but maybe data handling, logic, maths?

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
Gold member
posted Hide Post
quote:
.. I tried multiplying by constant.. Still no luck


Tony.. I tried and only then I pasted the code.I missed the compute part of the code
I tried multiplying the Z values.but the bubble size remains the same.
-* File bbbb.fex
-*INTERNAL_PROPERTIES$SampleData=false;OBJECTID=GLOBAL
-*INTERNAL_PROPERTIES$GlobalRecordLimit=500;OBJECTID=GLOBAL
TABLE FILE CAR
PRINT
HEIGHT
WIDTH
COMPUTE WEIGHT1/D12.5 = WEIGHT*10;
MODEL
ON TABLE HOLD AS H2 FORMAT FOCUS
END

GRAPH FILE H2
-* Created by Advanced Graph Assistant
SUM HEIGHT
WIDTH
WEIGHT1
BY MODEL
ON GRAPH SET GRAPHDEFAULT OFF
ON GRAPH SET HAXIS 4000
ON GRAPH SET VAXIS 3200
ON GRAPH SET UNITS PIXELS
ON GRAPH SET LOOKGRAPH BUBBLE
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 0
ON GRAPH SET GRLEGEND 1
ON GRAPH SET GRXAXIS 0
ON GRAPH PCHOLD FORMAT PNG
ON GRAPH SET GRAPHSTYLE *
setTemplateFile("/images/tdg/template/IBIFadeToGrey.txt");
setReportParsingErrors(false);
setSelectionEnableMove(false);
setDepthRadius(0);
setMarkerSizeDefault(100);
setPlace(true);
setSeriesType(0, 0);
setConnectLineStep(getSeries(0),false);
setSeriesType(1, 0);
setMarkerShape(getSeries(0), 2);
setMarkerShape(getSeries(1), 2);
setMarkerShape(getSeries(2), 2);
setMarkerShape(getSeries(3), 2);
setConnectLineStep(getSeries(1),false);
setSeriesType(2, 0);
setConnectLineStep(getSeries(2),false);
setSeriesType(3, 0);
setConnectLineStep(getSeries(3),false);
setSeriesType(4, 0);
setConnectLineStep(getSeries(4),false);
setSmoothLines(false);
setSmoothAreas(false);
setUseTimeScaleAxis(false);
setSeriesLooping(1);
setUseSeriesShapes(false);
setLegendSeriesStart(1);
setLegendSeriesCount(0);
setDisplay(getBeveledLegend(),false);
setReverseSeries(true);
ENDSTYLE
END

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


WF 8.0.0.9 Database : oracle

CURRENT:
WebFOCUS 8.0.0.9 /oracle 11 i

 
Posts: 51 | Registered: September 20, 2007Report This Post
Expert
posted Hide Post
Ok, with your second code you can see why I thought that you hadn't tried it.

I noticed that in your third code you tried a larger VAXIS and HAXIS. All that will do is give you a larger "canvas".

It may be that the bubbles are the max you can get, I don't know - perhaps someone who does use bubble graphs could assist. You do have the default set to the max. so that could be a pointer? Perhaps contacting IB tech support to see if you can get the bubble sizes larger would be best?

Remember that IB Tech Support are there if you have the requisite maintenance.

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
Gold member
posted Hide Post
Thanks Tony,

I too think the same even after setter the marker size to max . Am getting the bubble size small. I want to makemyself comfortable that I tried the max, before I could go to IBI.. That is why I posted this.. Anyway thanks for the reply


WF 8.0.0.9 Database : oracle

CURRENT:
WebFOCUS 8.0.0.9 /oracle 11 i

 
Posts: 51 | Registered: September 20, 2007Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic


Copyright © 1996-2020 Information Builders