Page 1 of 1

graph.makegroup undocumented

Posted: Mon Jul 13, 2015 6:33 am
by fboralli
In a graph object, there is the possibility to the see series that created the graph by using:
proc -> display graph data / make group

I wanted this to be available within a program, however I could not find it in documentation.
By trial and error, however, I have found that there exists an undocumented proc that does this:
graph01.makegroup

Could you provide some basic documentation on the options and parameters of this makegroup proc of the graph object?

Re: graph.makegroup undocumented

Posted: Mon Jul 13, 2015 9:04 am
by EViews Jason
makegroup as you have already discovered creates a new group object containing the series in the graph.

It can accept one optional argument which the name of the new group. For example

Code: Select all

mygraph.makegroup mynewgroup ' creates new group called mynewgroup mygraph.makegroup ' creates an untitled group

Re: graph.makegroup undocumented

Posted: Mon Jul 13, 2015 10:36 am
by fboralli
Thank you Jason