I trying to allow users to toggle data in a bubble chart and I'm running into a problem with the programatic control changes in the API
document.getElementById('optionsButton').onclick = function() {
//this successfully changes bubble colors
chart.setOptions({'colors': ['#2577B6', '#AA3834']});
//but this does not change the data being used in the chart. (in this case, 7 is a 2 in the original )
chart.setOptions({'view': {'columns': [0,1,7,3,4]}});
chart.draw();
};