I am trying to build a graph that will change resolution depending on how far you are zoomed in. Here is what it looks like when you are complete zoomed out.

alt text So this looks good so when I zoom in I get a higher resolution data and my graph looks like this:

alt text The problem is when I zoom out the higher resolution data does not get cleared out of the graph: alt text

The tables below the graphs are table display what is in the DataTable. This is what drawing code looks like.

var g_graph = new google.visualization.AnnotatedTimeLine(document.getElementById('graph_div_json'));
var table = new google.visualization.Table(document.getElementById('table_div_json'));
function handleQueryResponse(response){
    log("Drawing graph")
    var data = response.getDataTable()
    g_graph.draw(data, {allowRedraw:true, thickness:2, fill:50, scaleType:'maximized'})
    table.draw(data, {allowRedraw:true})
}

I am try to find a way for it to only displaying the data that is in the DataTable. I have tried removing the allowRedraw flag but then it breaks the zooming operation.

Any help would be greatly appreciated.

Thanks

See also

link|improve this question

50% accept rate
i've been watching this question for a year hoping someone would come up with an answer. – Ian Boyd Jul 21 '11 at 15:19
feedback

1 Answer

you can remove the allow redraw flag. In that case you have to put the data points manually in your data table

  1. The latest date of the actual whole data
  2. The most outdated date in the actual whole data.

this will retain your zooming operation. I think you have already seen removing the allowRedraw flag, works but with a small problem, flickering the whole chart.

link|improve this answer
Yes I did and that is one of the reason why i decided not use it and implemented a custom solution using flot. – Vitaly Babiy Nov 23 '10 at 6:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.