Hi,
I have a grouped set of data which underpins a dashboard.
subjects_result = google.visualization.data.group(
subjects,
[filter2],
[{'column': 6, 'aggregation': google.visualization.data.sum, 'type': 'number'},{'column': 7, 'aggregation': google.visualization.data.sum, 'type': 'number'},{'column': 8, 'aggregation': google.visualization.data.sum, 'type': 'number'},}]
);
I am passing in a value for the key columns via a variable 'filter2'. This works on first drawing.
However, I am using programmatic changes to alter the value of filter2 and redrawing the dashboard. It appears that the data group 'subjects_result' does not refresh.
How can this be achieved?
Thanks in advance for any help.