You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Capture shift-click events and bubble them up to React to handle
Since Vega (and not React) determines the order of groups, we'll have to grab this from Vega before further processing. See src/components/Vega/SurveillancePlot.js for an example of extracting data from Vega plots into React
Create the range selection from the ordered list of groups. The group that was just shift-clicked on is the end of the range, and the previously selected group is the beginning of the range. If no groups are already selected, then only select the one group that was shift-clicked (The range starts and ends at the same group). If multiple groups were already selected, then start the range at the most recently selected lineage (should be the last element in configStore.selectedGroups).
The text was updated successfully, but these errors were encountered:
Allow range selection from our GroupStack plot
Basic workflow for this:
src/components/Vega/SurveillancePlot.js
for an example of extracting data from Vega plots into ReactconfigStore.selectedGroups
).The text was updated successfully, but these errors were encountered: