Row State Handler stops firing after the first selection - how do I keep it persistent?
I'm building linked selection across a set of By-group Bivariate plots. The plots come from a long-format table (one row per ID per Mode):
dt << Bivariate(
Y( dt:Y ),
X( dt:X ),
By( :MODE )
);
What I want: when I click a point in one of the By-group graphs, I want every point in the other graphs that shares the same :ID to also become selected. I'd like to do this witho...