I am trying to have a point selected in a scatterchart highlight the
corresponding row in a table and vice-versus. Is this possible? It
works between two tables but doesn't work when incorporating
sparklines or scattercharts. When I click a point in the scatterchart
the select listener is flagged (and appropriate value selected).
However, the actual point in the scatter chart doesn't seem to be
selected (it doesn't change color or indicate it is different from the
rest of the points). On mouseover it shows the label for each point,
but nothing happens when clicked (aside from calling the listener).
My code (which handles the selecting) is like the following:
//For a table (this works between two tables)
container.chart.setSelection(brushSelect);
//For a scatterchart (never works)
container.chart.setSelection([{row: brushSelect.getSelection()
[0].row}]);
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-visualization-api?hl=en.