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.
Hello, I tried to print two horizontal stack bar graphs side by side but some how extra bar graph is hiding my first stack graph, please let me know if I`m missing something, here is my code
GRAPH FILE CAR
PRINT DEALER_COST RETAIL_COST
BY CAR
WHERE CAR EQ 'JENSEN'
HEADING
"Previous Month"
ON GRAPH HOLD AS ONE FORMAT JSCHART
ON GRAPH SET VZERO OFF
ON GRAPH SET HTMLENCODE ON
ON GRAPH SET GRAPHDEFAULT OFF
ON GRAPH SET HAXIS 400.0
ON GRAPH SET VAXIS 150.0
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 0
ON GRAPH SET GRLEGEND 0
ON GRAPH SET GRXAXIS 1
ON GRAPH SET LOOKGRAPH HBRSTKPC
ON GRAPH SET STYLE *
*GRAPH_SCRIPT
setPieDepth(0);
setPieTilt(0);
setDepthRadius(0);
setCurveFitEquationDisplay(false);
setPlace(true);
*END
INCLUDE=IBFS:/FILE/IBI_HTML_DIR/javaassist/intl/EN/ENIADefault_combine.sty,$
TYPE=HEADING, JUSTIFY=CENTER, FONT='Trebuchet MS', SIZE=9, COLOR=RGB(66 70 73), STYLE=BOLD, $
*GRAPH_SCRIPT
setReportParsingErrors(false);
setSelectionEnableMove(false);
setFillColor(getSeries(0),new Color(128,128,128));
setFillColor(getSeries(1),new Color(255,0,0));
setFillColor(getSeries(2),new Color(128,128,255));
setDisplay(getDataText(2), false);
setDisplay(getDataText(1), false);
setDisplay(getDataText(0), false);
setTextString(getO1Title(),"");
*END
ENDSTYLE
END
-RUN
GRAPH FILE CAR
PRINT DEALER_COST RETAIL_COST
BY CAR
WHERE CAR EQ 'JENSEN'
HEADING
"Current Month"
ON GRAPH HOLD AS TWO FORMAT JSCHART
ON GRAPH SET VZERO OFF
ON GRAPH SET HTMLENCODE ON
ON GRAPH SET GRAPHDEFAULT OFF
ON GRAPH SET HAXIS 400.0
ON GRAPH SET VAXIS 150.0
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 0
ON GRAPH SET GRLEGEND 0
ON GRAPH SET GRXAXIS 1
ON GRAPH SET LOOKGRAPH HBRSTKPC
ON GRAPH SET STYLE *
*GRAPH_SCRIPT
setPieDepth(0);
setPieTilt(0);
setDepthRadius(0);
setCurveFitEquationDisplay(false);
setPlace(true);
*END
INCLUDE=IBFS:/FILE/IBI_HTML_DIR/javaassist/intl/EN/ENIADefault_combine.sty,$
TYPE=HEADING, JUSTIFY=CENTER, FONT='Trebuchet MS', SIZE=9, COLOR=RGB(66 70 73), STYLE=BOLD, $
*GRAPH_SCRIPT
setReportParsingErrors(false);
setSelectionEnableMove(false);
setFillColor(getSeries(0),new Color(128,128,128));
setFillColor(getSeries(1),new Color(255,0,0));
setFillColor(getSeries(2),new Color(128,128,255));
setDisplay(getDataText(2), false);
setDisplay(getDataText(1), false);
setDisplay(getDataText(0), false);
setTextString(getO1Title(),"");
*END
ENDSTYLE
END
-RUN
-HTMLFORM BEGIN
<html>
<head>
</head>
<body>
<table>
<tr>
<td>!IBI.FIL.ONE;</td><td>!IBI.FIL.TWO;</td>
</tr>
</table>
</body>
</html>
-HTMLFORM END
-EXIT
This message has been edited. Last edited by: Tamra,
Hi Francis, I`m getting two charts side by side, but my first graph is masked with bar graph (I think default graph), my actual graph is hiding behind the bar graph which I can see the heading of the first graph, when I ran individually, they are good