anyplotlib.markers.MarkerTypeDict#
- class anyplotlib.markers.MarkerTypeDict(marker_type, push_fn)[source]#
Bases:
objectDict-like container for all named groups of one marker type.
Any modification (
__setitem__,__delitem__) automatically triggers the_push_fncallback so the plot re-renders.- Parameters:
marker_type (str) – Type of markers (e.g., ‘circles’, ‘arrows’, ‘lines’).
push_fn (callable) – Zero-arg callback to trigger re-render on mutations.
- pop(name, *args)[source]#
Remove and return a MarkerGroup by name.