Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
support multiple lines: pass in a `points_set` (a list of `Points`, w…
…hose color attr is set), generate a 1px line for each.
- Loading branch information
Showing
with
41 additions
and 27 deletions.
- +1 −1 svg_graph/__init__.py
- +40 −26 svg_graph/base.py
@@ -1,4 +1,4 @@ | ||
"""Very simple 2D line graphs rendered as SVG | ||
""" | ||
|
||
from .base import LineGraph | ||
from .base import Points, LineGraph |