Skip to content

Commit

Permalink
fix areaAlpha handling of secondYAxis series
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm1 committed Apr 24, 2012
1 parent d9e14fa commit 8f17c2c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions webapp/graphite/render/glyph.py
Original file line number Diff line number Diff line change
Expand Up @@ -776,6 +776,8 @@ def drawLines(self, width=None, dash=None, linecap='butt', linejoin='miter'):
newSeries = TimeSeries(series.name, series.start, series.end, series.step*series.valuesPerPoint, [x for x in series])
newSeries.xStep = series.xStep
newSeries.color = series.color
if 'secondYAxis' in series.options:
newSeries.options['secondYAxis'] = True
strokeSeries.append(newSeries)
self.data += strokeSeries

Expand Down

0 comments on commit 8f17c2c

Please sign in to comment.