Browse Source

Merge pull request #11 from Kozea/no-zero-slice

Pie graph: do not show slices of 0° angle.
pull/12/merge
Mounier Florian 12 years ago
parent
commit
d1da3a3794
  1. 2
      pygal/svg.py

2
pygal/svg.py

@ -165,7 +165,7 @@ class Svg(object):
cy=center[1],
r=radius,
class_='slice reactive tooltip-trigger')
else:
elif angle > 0:
to = [absolute_project(radius, start_angle),
absolute_project(radius, start_angle + angle),
absolute_project(small_radius, start_angle + angle),

Loading…
Cancel
Save