I’m trying to add a Data Table to my graph on my report. Which I am able to do.
The problem is forcing the Data Table to appear on the graph without having to BROWSE the table and CLICK the graph to update.
How do I do this?
Thank you,
Jon
CODE BELOW:
**** -------------------------------------------------------**** -------------- GRAPH ----------------------------------
**** -------------------------------------------------------
SELECT mygraph1
* parm1 - "AUTOGRAPH" && required
nChartType = 3 && * parm2 - chart type (number)
nChartSubType = 1 && * parm3 - chart subtype (number)
cTitle = " " && * parm4 - title (if not empty)
lSeriesByRow = .F. && * parm5 - series by row (.T.), by column (.F.)
lAddLegend = .T. && * parm6 - has legend (.T.)
lUseAutoformat = .T. && * parm7 - use autoformat (.F.)
cOutFile = "c:\test\mygraph.dbf" && * parm8 - name of output DBF for graph
cModGen = .T. && * parm9 - don't open graph when done
* parm10 - show nulls
DO (_GENGRAPH) WITH "AUTOGRAPH", nChartType, nChartSubType, cTitle, lSeriesByRow,lAddLegend,lUseAutoformat,cOutFile,cModGen
**** -------------------------------------------------------
**** -------------- ADD DATA TABLE -------------------------
**** -------------------------------------------------------
SELECT mygraph
cGField = "olegraph" && General field
oGform =CreateObject("form")
oGform.ADDOBJECT("ole1","oleboundcontrol")
oGraphRef = m.oGform.ole1
oGraphRef.ControlSource = m.cGField
oGraphRef.HasDataTable = .T.
oGraphRef.DataTable.HasBorderOutline = .T.
oGraphRef.DataTable.Font.Name = "arial"
oGraphRef.DataTable.Font.Size = 10
oGraphRef.DataTable.Font.Italic = .T.
oGraphRef.ChartTitle.Caption = "COMPARISON"
oGraphRef.refresh
** BROWSE
SELECT mygraph0
REPLACE olechart WITH mygraph.olegraph
The problem is forcing the Data Table to appear on the graph without having to BROWSE the table and CLICK the graph to update.
How do I do this?
Thank you,
Jon
CODE BELOW:
**** -------------------------------------------------------**** -------------- GRAPH ----------------------------------
**** -------------------------------------------------------
SELECT mygraph1
* parm1 - "AUTOGRAPH" && required
nChartType = 3 && * parm2 - chart type (number)
nChartSubType = 1 && * parm3 - chart subtype (number)
cTitle = " " && * parm4 - title (if not empty)
lSeriesByRow = .F. && * parm5 - series by row (.T.), by column (.F.)
lAddLegend = .T. && * parm6 - has legend (.T.)
lUseAutoformat = .T. && * parm7 - use autoformat (.F.)
cOutFile = "c:\test\mygraph.dbf" && * parm8 - name of output DBF for graph
cModGen = .T. && * parm9 - don't open graph when done
* parm10 - show nulls
DO (_GENGRAPH) WITH "AUTOGRAPH", nChartType, nChartSubType, cTitle, lSeriesByRow,lAddLegend,lUseAutoformat,cOutFile,cModGen
**** -------------------------------------------------------
**** -------------- ADD DATA TABLE -------------------------
**** -------------------------------------------------------
SELECT mygraph
cGField = "olegraph" && General field
oGform =CreateObject("form")
oGform.ADDOBJECT("ole1","oleboundcontrol")
oGraphRef = m.oGform.ole1
oGraphRef.ControlSource = m.cGField
oGraphRef.HasDataTable = .T.
oGraphRef.DataTable.HasBorderOutline = .T.
oGraphRef.DataTable.Font.Name = "arial"
oGraphRef.DataTable.Font.Size = 10
oGraphRef.DataTable.Font.Italic = .T.
oGraphRef.ChartTitle.Caption = "COMPARISON"
oGraphRef.refresh
** BROWSE
SELECT mygraph0
REPLACE olechart WITH mygraph.olegraph