MCPcopy Index your code
hub / github.com/bqplot/bqplot / _apply_properties

Function _apply_properties

bqplot/pyplot.py:1300–1308  ·  view source on GitHub ↗

Applies the specified properties to the widget. `properties` is a dictionary with key value pairs corresponding to the properties to be applied to the widget.

(widget, properties={})

Source from the content-addressed store, hash-verified

1298
1299
1300def _apply_properties(widget, properties={}):
1301 """Applies the specified properties to the widget.
1302
1303 `properties` is a dictionary with key value pairs corresponding
1304 to the properties to be applied to the widget.
1305 """
1306 with widget.hold_sync():
1307 for key, value in properties.items():
1308 setattr(widget, key, value)
1309
1310
1311def _get_line_styles(marker_str):

Callers 2

axesFunction · 0.85
_set_labelFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…