INNER CODE UNIT · Python
set_tick_labels
lgienapp/aquarel · aquarel/theme.py:557
def set_tick_labels(
self,
location: str = None,
size: str = None,
left: bool = None,
right: bool = None,
bottom: bool = None,
top: bool = None,
):
"""
Set tick label styling options.
:param location: location of the tick labels, can be {"left", "right", "bottom", "top", "center"}, default: center
:param size: size of the tick label, can be {"xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large"}, default: "normal"
:param left: whether to draw the tick labels to the left of the y-axis, default: True
:param right: whether to draw the tick labels to the right of the y-axis, default: False
:param bottom: whether to draw the tick labels at the bottom of the x-axis, default: True
:param top: whether to draw the tick labels at the top of the x-axis, default: False