Browse Source

Merge pull request #146 from sirlark/axis_reordering

Reorders axes in SVG output. Fix #145
pull/151/head
Mounier Florian 11 years ago
parent
commit
b28627433a
  1. 2
      pygal/graph/graph.py

2
pygal/graph/graph.py

@ -47,8 +47,8 @@ class Graph(BaseGraph):
def _axes(self):
"""Draw axes"""
self._x_axis()
self._y_axis()
self._x_axis()
def _set_view(self):
"""Assign a view to current graph"""

Loading…
Cancel
Save