Skip to content

Commit fc9fa01

Browse files
Allow for single xvals
1 parent b17e58e commit fc9fa01

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ labelLine(
6464
align=False,
6565
backgroundcolor="none",
6666
)
67-
labelLines(lines[:-1], yoffsets=0.01, align=False, backgroundcolor="none")
67+
labelLines(lines[:-1], xvals=0.85, yoffsets=0.01, align=False, backgroundcolor="none")
6868

6969
# labelLines also supports log-scaled x-axes
7070
ax = axes[4]

example.png

640 Bytes
Loading

labellines/core.py

+2
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,8 @@ def labelLines(
213213
xvals[order] = old_xvals # type: ignore
214214
else:
215215
xvals = list(always_iterable(xvals)) # force the creation of a copy
216+
if len(xvals) == 1:
217+
xvals = [xvals[0]] * len(all_lines)
216218

217219
lab_lines, labels = [], []
218220
# Take only the lines which have labels other than the default ones

0 commit comments

Comments
 (0)