We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
nv.addGraph( generator(), callback() ) nv.addGraph( { generate: generator(), callback: callback() } )
Schedules a new graph to be rendered using the given generator method. The callback argument is optional.
FIXME: When is it called back? Does it get any arguments?
nv.addGraph(function(){ var chart = nv.models.lineChart(); //... d3.select("svg").call(chart); return chart; });
There was an error while loading. Please reload this page.