@@ -17,9 +17,11 @@ class ConnectorOptions(ConnectorBase):
1717 def __init__ (self , ** kwargs ):
1818 self ._algorithm_margin = None
1919 self ._enabled = None
20+ self ._radius = None
2021
2122 self .algorithm_margin = kwargs .get ('algorithm_margin' , None )
2223 self .enabled = kwargs .get ('enabled' , None )
24+ self .radius = kwargs .get ('radius' , None )
2325
2426 super ().__init__ (** kwargs )
2527
@@ -70,6 +72,7 @@ def _get_kwargs_from_dict(cls, as_dict):
7072 'line_color' : as_dict .get ('lineColor' , None ),
7173 'line_width' : as_dict .get ('lineWidth' , None ),
7274 'marker' : as_dict .get ('marker' , None ),
75+ 'radius' : as_dict .get ('radius' , None ),
7376 'start_marker' : as_dict .get ('startMarker' , None ),
7477
7578 'algorithm_margin' : as_dict .get ('algorithmMargin' , None ),
@@ -81,7 +84,7 @@ def _get_kwargs_from_dict(cls, as_dict):
8184 def _to_untrimmed_dict (self , in_cls = None ) -> dict :
8285 untrimmed = {
8386 'algorithmMargin' : self .algorithm_margin ,
84- 'enabled' : self .enabled
87+ 'enabled' : self .enabled ,
8588 }
8689
8790 parent_as_dict = super ()._to_untrimmed_dict (in_cls = in_cls ) or {}
0 commit comments