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
Does anyone know how to get a bubble graph's axis to meet at (0,0)? Is there some type of set command that will do this? Thanks.
 
Posts: 70 | Registered: April 04, 2007Report This Post
Expert
posted Hide Post
Hi all,

FYI, the customer has opened a case with Information Builders and here is the response from product management:

When you were referring to X and Y axis (blue lines), they are actually called Quadrant lines. Quadrant lines are a series of horizontal and vertical lines that divide the highest and lowest values into four equal sections, and that's the reason they are crossed at 16% and -15% in your example. They are primarily used to aid in visual inspection of your data.

The good news is that you can control where to draw Quadrant lines. You can use the following:

setQuadrantLineValueY (int nIndex, double newValue); where
nIndex is the number of the Quadrant Line (zero to the number of Quadrant Lines drawn),
newValue is the scale value.

and

setQuadrantLineValueX (int nIndex, double newValue); where
nIndex is the number of the Quadrant Line (zero to the number of Quadrant Lines drawn),
newValue is the scale value.

Here is an example code using the sample CAR file:

GRAPH FILE CAR 
SUM 
  RETAIL_COST 
  DEALER_COST 
  SALES 
ACROSS COUNTRY 
ON GRAPH SET LOOKGRAPH BUBBLE 
ON GRAPH SET GRAPHEDIT OFF 
ON GRAPH SET BARNUMB OFF 
ON GRAPH SET 3D OFF 
ON GRAPH SET VZERO OFF 
ON GRAPH SET GRID ON 
ON GRAPH SET GRAPHSTYLE * 
setUseDefaultBubbleMarker(false); 
setToolTipDisplay(true); 
setO1LabelDisplay(true); 
setO1AxisSide(0); 
setMarkerDisplay(true); 
setConnectLineMarkers(false); 
setConnectScatterMarkers(false); 
setO1LabelDisplay(true); 
setO1AxisSide(0); 
setO1MajorGridDisplay(true); 
setO1MajorGridStyle(0); 
setO1MinorGridDisplay(false); 
setAxisAssignment(0,0); 
setSeriesType(0,1); 
setAxisAssignment(1,0); 
setSeriesType(1,1); 
setAxisAssignment(2,0); 
setY1LabelDisplay(true); 
setY1AxisSide(0); 
setY1MajorGridDisplay(true); 
setY1MajorGridStyle(0); 
setY1MinorGridDisplay(false); 
setTextFormatPreset(getY1Label(),1); 
setPieFeelerTextDisplay(1); 
setPieLabelDisplay(0); 
setTextFormatPreset(getPieSliceLabel(),1); 
setLegendDisplay(true); 
setLegendTextAutofit(true); 
setFontSizeAbsolute(getY1Title(),true); 
setFontSizeAbsolute(getY1Label(),true); 
setFontSizeAbsolute(getY2Title(),true); 
setFontSizeAbsolute(getY2Label(),true); 
setFontSizeAbsolute(getO1Title(),true); 
setO1LabelAutofit(true); 
setPlace(true); 

-*Quadrant Lines to intersect at 20000, 20000
setQuadrantLineValueX(0, 20000);
setQuadrantLineValueY(0, 20000);
-*End of Quadrant Lines

ENDSTYLE 
END 



Hope this helps. Smiler

Cheers,

Kerry


Kerry Zhan
Focal Point Moderator
Information Builders, Inc.
 
Posts: 1948 | Location: New York | Registered: November 16, 2004Report This Post
Gold member
posted Hide Post
Thanks Kerry, that did the trick.
 
Posts: 70 | Registered: April 04, 2007Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic


Copyright © 1996-2020 Information Builders