score:0

a quick and easy way would be to add:

d3.select(".nv-controlswrap").attr("transform", "translate(0,620)")

to after the set-up of the nvd3.js graph.

you'll have to create a fork of nvd3 and alter:

https://github.com/novus/nvd3/blob/master/src/models/multibarchart.js#l186-l189

eg:

    g.select('.nv-controlswrap')
        .datum(controlsdata)
        .attr('transform', 'translate(0,' + height +')')
        .call(controls);

Related Query

More Query from same tag