@@ -213,8 +213,8 @@ def render_shapes(
213213 `fill_alpha` will overwrite the value present in the cmap.
214214 groups : list[str] | str | None
215215 When using `color` and the key represents discrete labels, `groups` can be used to show only a subset of
216- them. By default, non-matching elements are filtered out entirely (shapes and points only; labels are
217- raster-based and cannot be filtered). To show non-matching elements, set ``na_color`` explicitly.
216+ them. By default, non-matching elements are hidden. To show non-matching elements, set ``na_color``
217+ explicitly.
218218 If element is None, broadcasting behaviour is attempted (use the same values for all elements).
219219 palette : list[str] | str | None
220220 Palette for discrete annotations. List of valid color names that should be used for the categories. Must
@@ -399,8 +399,9 @@ def render_points(
399399 value is used instead.
400400 groups : list[str] | str | None
401401 When using `color` and the key represents discrete labels, `groups` can be used to show only a subset of
402- them. Other values are set to NA. If `element` is `None`, broadcasting behaviour is attempted (use the same
403- values for all elements).
402+ them. By default, non-matching points are filtered out entirely. To show non-matching points, set
403+ ``na_color`` explicitly.
404+ If element is None, broadcasting behaviour is attempted (use the same values for all elements).
404405 palette : list[str] | str | None
405406 Palette for discrete annotations. List of valid color names that should be used for the categories. Must
406407 match the number of groups. If `element` is `None`, broadcasting behaviour is attempted (use the same values
@@ -672,7 +673,7 @@ def render_labels(
672673 table_name to be used for the element if you would like a specific table to be used.
673674 groups : list[str] | str | None
674675 When using `color` and the key represents discrete labels, `groups` can be used to show only a subset of
675- them. Other values are set to NA. The list can contain multiple discrete labels to be visualized .
676+ them. By default, non-matching labels are hidden. To show non-matching labels, set ``na_color`` explicitly .
676677 palette : list[str] | str | None
677678 Palette for discrete annotations. List of valid color names that should be used for the categories. Must
678679 match the number of groups. The list can contain multiple palettes (one per group) to be visualized. If
0 commit comments