Focal Point
[CLOSED] How to create a report with an aligned data table under a graph?

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/3127074136

June 13, 2013, 12:47 PM
JC Zhu
[CLOSED] How to create a report with an aligned data table under a graph?
I am trying to produce a series of charts with effect similar to what's illustrated in the following URL in Excel: http://www.dummies.com/how-to/...xcel-2010-chart.html.

Essentially I need to put a data table under a graph and have the table columns aligned with the data points in the graph. Is it possible in WebFocus?

This message has been edited. Last edited by: <Kathryn Henning>,


WebFOCUS 7.7.3
Windows, All Outputs
June 13, 2013, 01:14 PM
Doug
What format are you using?

I usually just do a TABLE FILE request after my GRAPH FILE request and align them as desired.




   In FOCUS Since 1983 ~ from FOCUS to WebFOCUS.
   Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
June 14, 2013, 07:24 AM
Alex
Take a look at this
http://forums.informationbuild...711034602#4711034602


WF 7.7.04, WF 8.0.7, Win7, Win8, Linux, UNIX, Excel, PDF
June 14, 2013, 09:06 AM
Doug
Yep,
. . .
ON GRAPH HOLD AS GRPH FORMAT HTMTABLE
. . .
ON TABLE HOLD AS RPT FORMAT HTMTABLE
. . .
-HTMLFORM BEGIN
<HTML>
<TABLE>
<TR><TD>
!IBI.FIL.GRPH;
</TD></TR>
<TR><TD VALIGN="TOP"  style="padding-left:  ">
!IBI.FIL.RPT;
</TD></TR>
</TABLE>
</HTML>
-HTMLFORM END
Will most certainly do the trick for alignment.
June 14, 2013, 09:52 AM
susannah
TABLE FILE IBISAMP/CAR
SUM SALES DCOST
BY CAR
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT,COLUMN=SALES,WIDTH=3,$
END

what you want is to tinker with the WIDTH attribute of each column. make them as wide as you need; trial and error.




In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
June 14, 2013, 10:30 AM
Doug
Smiler
quote:
tinker