Browse Source

Pie graph: do not show slices of 0° angle.

These sometimes result in an ugly 1 pixel wide line.
pull/11/head
Simon Sapin 12 years ago
parent
commit
4bfc676bcd
  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