[docs]defset_stroke(self,thickness:int|float,color:ColorInput|None=None):"""Set Stroke style of the axis. Args: thickness (int | float): Thickness of the stroke. color (Color): Color of the stroke. Use 'transparent' or None to hide. Returns: The instance of the class for fluent interface. """color=convert_color_to_hex(color)ifcolorisnotNoneelseNoneself.instance.send(self.id,'setStrokeStyle',{'thickness':thickness,'color':color},)returnself