Skip to content

handling of color=None by eventplot(), fixes #3728 #3729

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 28, 2014
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
handling of color=None by eventplot(), fixes #3728
  • Loading branch information
alimuldal committed Oct 27, 2014
commit a2d46ffa6baf7009efdfea398de3fac49bc7a8a6
7 changes: 5 additions & 2 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1180,8 +1180,11 @@ def eventplot(self, positions, orientation='horizontal', lineoffsets=1,
if len(linewidths) == 1:
linewidths = np.tile(linewidths, len(positions))
if len(colors) == 1:
colors = np.asanyarray(colors)
colors = np.tile(colors, [len(positions), 1])
if colors[0] is None:
colors = colors * len(positions)
else:
colors = np.asanyarray(colors)
colors = np.tile(colors, [len(positions), 1])
if len(linestyles) == 1:
linestyles = [linestyles] * len(positions)

Expand Down