Browse Source

Update graph.py

pull/292/head
Hektor 9 years ago
parent
commit
fa106c32cb
  1. 2
      pygal/graph/graph.py

2
pygal/graph/graph.py

@ -598,6 +598,8 @@ class Graph(BaseGraph):
self._y_title_height = height + self.spacing
def _compute_confidence_interval(self, x, y, val, metadata):
if metadata is None:
return
if self.horizontal:
x, y = y, x
ci_width = self.view.width / 100

Loading…
Cancel
Save