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
NickAkhmetov/Add allow_multiple_scopes_per_type boolean arg to use_coordination and link_views (#274)
* Add `allow_multiple_scopes_per_type` boolean arg to `use_coordination` and `link_views`
* Remove lint-failing whitespace
* Safely fetch existing value using `.get`
* Use concatenation instead of appending
Attach a coordination scope to this view instance. All views using the same coordination scope for a particular coordination type will effectively be linked together.
376
376
377
377
:param \\*c_scopes: A variable number of coordination scope instances can be passed.
:param bool allow_multiple_scopes_per_type: Whether to allow multiple coordination scopes per coordination type. If true, multiple values for the same coordination type are treated as a list. If false, latest value for same coordination type is used. Defaults to False.
:param c_types: The coordination types on which to coordinate the views.
823
832
:type c_types: list of str or list of vitessce.constants.CoordinationType
824
833
:param list c_values: Initial values corresponding to each coordination type. Should have the same length as the c_types array. Optional.
834
+
:param bool allow_multiple_scopes_per_type: Whether to allow multiple coordination scopes per coordination type. If true, multiple values for the same coordination type are treated as a list. If false, latest value for same coordination type is used. Defaults to False.
0 commit comments