Skip to content

Commit

Permalink
ENH plot.TopoArray(): tick-label defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
christianbrodbeck committed Jul 30, 2021
1 parent d2a0825 commit 1c181a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eelbrain/plot/_topo.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ def __init__(
# layout
xlabel: Union[bool, str] = True,
ylabel: Union[bool, str] = True,
xticklabels: Union[str, int, Sequence[int]] = -1,
xticklabels: Union[str, int, Sequence[int]] = 'bottom',
yticklabels: Union[str, int, Sequence[int]] = 'left',
axtitle: Union[bool, Sequence[str]] = True,
frame: bool = True,
Expand Down Expand Up @@ -955,8 +955,8 @@ def __init__(
axtitle: Union[bool, Sequence[str]] = True,
xlabel: Union[bool, str] = True,
ylabel: Union[bool, str] = True,
xticklabels: Union[int, Sequence[int]] = -1,
yticklabels: Union[int, Sequence[int]] = 0,
xticklabels: Union[str, int, Sequence[int]] = 'bottom',
yticklabels: Union[str, int, Sequence[int]] = 'left',
connectionstyle: str = "angle3,angleA=90,angleB=0",
connection_color: ColorArg = UNAMBIGUOUS_COLORS['bluish green'],
topo_labels: Literal['above', 'below', 'none'] = 'above',
Expand Down

0 comments on commit 1c181a8

Please sign in to comment.