Skip to content
Snippets Groups Projects
Commit f47546b7 authored by Julian Lenz's avatar Julian Lenz
Browse files

Correction in FancyAxes.getNextStyle()

parent 6dc5f4c9
No related branches found
No related tags found
No related merge requests found
......@@ -253,15 +253,17 @@ class FancyAxes(mpl.axes.Axes):
def getNextStyle(self,which='errorbar'):
if which=='errorbar':
next(self.lCyclerErrorbar)
return {
'linestyle':next(self.lCyclerErrorbar),
'linestyle':'',
'marker':next(self.mCyclerErrorbar),
'color':next(self.cCyclerErrorbar),
}
elif which=='plot':
next(self.mCyclerPlot)
return {
'linestyle':next(self.lCyclerPlot),
'marker':next(self.mCyclerPlot),
'marker':'',
'color':next(self.cCyclerPlot),
}
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment