ModelFactory is an interface that provides a way to create a RootGraphModel object.

Returns

RootGraphModel - Returns a RootGraphModel object.

interface ModelFactory {
    (id?, attributes?, callback?): RootGraphModel;
    (attributes?, callback?): RootGraphModel;
    (id?, callback?): RootGraphModel;
    (callback?): RootGraphModel;
}

Generated using TypeDoc