@@ -17,9 +17,11 @@ class ConnectorOptions(ConnectorBase):
17
17
def __init__ (self , ** kwargs ):
18
18
self ._algorithm_margin = None
19
19
self ._enabled = None
20
+ self ._radius = None
20
21
21
22
self .algorithm_margin = kwargs .get ('algorithm_margin' , None )
22
23
self .enabled = kwargs .get ('enabled' , None )
24
+ self .radius = kwargs .get ('radius' , None )
23
25
24
26
super ().__init__ (** kwargs )
25
27
@@ -70,6 +72,7 @@ def _get_kwargs_from_dict(cls, as_dict):
70
72
'line_color' : as_dict .get ('lineColor' , None ),
71
73
'line_width' : as_dict .get ('lineWidth' , None ),
72
74
'marker' : as_dict .get ('marker' , None ),
75
+ 'radius' : as_dict .get ('radius' , None ),
73
76
'start_marker' : as_dict .get ('startMarker' , None ),
74
77
75
78
'algorithm_margin' : as_dict .get ('algorithmMargin' , None ),
@@ -81,7 +84,7 @@ def _get_kwargs_from_dict(cls, as_dict):
81
84
def _to_untrimmed_dict (self , in_cls = None ) -> dict :
82
85
untrimmed = {
83
86
'algorithmMargin' : self .algorithm_margin ,
84
- 'enabled' : self .enabled
87
+ 'enabled' : self .enabled ,
85
88
}
86
89
87
90
parent_as_dict = super ()._to_untrimmed_dict (in_cls = in_cls ) or {}
0 commit comments