-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add activateOn to interval1D and interval2D to define when a selection should be activated #35
base: main
Are you sure you want to change the base?
Conversation
…lection should be activated
I like this! However, we might want to wait on merging for now. I also want to think through some complementary possible changes, such as adding a query queue in the Coordinator (not just within a DB client) to enable more fine-grained control of execution / ordering / canceling. Ultimately such changes may prove orthogonal to this one, but I want to approach it holistically. |
I like the idea of a more holistic approach. It would be great to also support activating a chart when the user hovers for some time rather than just on a simple I will need this change for a local experiment but we don't need to merge it yet. |
Ooh, having a reusable set of activation methods (shared across various interactors) sounds like a promising direction. Would be worth enumerating what we think that space of methods should be. |
I'll start
|
To which I would simply add:
Right now individual interactors make their own activation decisions. This conversation is making me also think of more coordinated strategies. Right now Selections include resolution strategies (which I plan to abstract to make "pluggable" in the future). Selections may also be the right place to include activation strategies, which might be shared across multiple interactors. |
This reminds me of another feature. I'd like to restrict the number of brushes. It would be nice to have only one brush or two brushes as then we could make good guarantees about the performance or precompute indexes (a la immens). |
Single brush support is already provided at the Selection level via the |
I found that for very large datasets where index creation takes a few seconds, it can be better to only activate a selection on click instead of hover.