[docs]defset_line_width(self,width:int|float):"""Sets the line width for the Random Walk Index. Args: width (int | float): The width of the line to be displayed. """self.instance.send(self.id,'setLineWidth',{'width':width})returnself
[docs]defset_rwi_high_color(self,color:str):"""Sets the color for the high line of the Random Walk Index. Args: color (str): The color of the high line. """self.instance.send(self.id,'setRWIHighColor',{'color':color})returnself
[docs]defset_rwi_low_color(self,color:str):"""Sets the color for the low line of the Random Walk Index. Args: color (str): The color of the low line. """self.instance.send(self.id,'setRWILowColor',{'color':color})returnself