Is there a way to redraw the x and y axis' without calling dc.renderAll()?
I'm trying to resize a chart on a window resize event and have that chart fill up it's parent container div, like so:
$(window).resize(function() {
// super fast, but doesn't redraw the x & y axis'
dc.redrawAll();
// redraws everything associated with a chart, but at a performance cost
/* dc.renderAll(); */
});
Thanks in advance, Cole