I have a series of buttons that when clicked each pass a separate chart to the same function that redraws the chart in a jQuery UI dialog window where it is much larger and can be easily printed (via a separate function). Some of my data does not easily fit into these charts and is better displayed through dashboards which I generate dynamically using a function similar to the filter chart function shown in
my jsFiddle. I've mastered the art of redrawing a simple chart (see zoomChart function at the bottom of my fiddle). How can I do the same thing with my dashboards? (Redraw them larger). I would like the functionality to be maintained so that the chart filtered multiple ways could be rapidly printed and complex data can be retrieved in the larger display. I see the Dashboard object but don't see a way to easily alter some of the properties like I can with the drawChart method. I have been looking around and came across
this post, which sounded promising but doesn't seem to have anything to do with dashboards. Do I have to go all the way back to the raw data and reconfigure everything for the new location?