Does chartWrapper work with dataView? 

In other words, I have

var view = new google.visualization.DataView(data);
view.setRows(view.getFilteredRows([{column: 3, value: 'some category'}]));

var chart = new google.visualization.ChartWrapper({
        chartType: 'ScatterChart',
        containerId: 'chart_div',
        dataTable: data,
view: view,
    });

chart.draw();

...but the 'view' doesn't have any effect on the data drawn in the chart - 
all the data is drawn. Am I doing something wrong or do I have to use 
chart.draw(view,options)? 

Thank you!

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/3bed9032-bfcc-44ff-a817-65ebfe76424e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to