INNER CODE UNIT · Python
set_lines
lgienapp/aquarel · aquarel/theme.py:641
def set_lines(self, style: Optional[str] = None, width: Optional[float] = None):
"""
Set line styling options.
:param style: the style to draw lines with, can be {"-", "--", "-.", ":", ""}, default: "-"
:param width: the width to draw lines with in pt, default: 1.5
:return: self
"""
self._update_params(
"lines",
{
"style": style if style in self._line_style_options else None,
"width": width,
},
)
return self
def set_font(