Changed description
from
This package provides a charting library targetting SVG as the rendered output.
== Usage
>>> import Chart
>>>
>>> let xs = [[(0.0, 1.0), (1.0, 1.0), (2.0, 5.0)], [(0.0, 0.0), (3.0, 3.0)], [(0.5, 4.0), (0.5, 0)]] :: [[(Double, Double)]]
>>> let ls = fmap (PointXY . uncurry Point) <$> xs
>>> let anns = zipWith (\w c -> LineA (LineStyle w c Nothing Nothing Nothing Nothing)) [0.015, 0.03, 0.01] palette1
>>> let lineChart = zipWith Chart anns ls
>>> writeChartSvgHud "other/lineshud.svg" lineChart

See "Chart" for a broad overview of concepts, and "Chart.Examples" for a variety of practical examples.
to This package provides a charting library targetting SVG as the rendered output.
== Usage
>>> import Chart
>>>
>>> let xs = [[(0.0, 1.0), (1.0, 1.0), (2.0, 5.0)], [(0.0, 0.0), (3.0, 3.0)], [(0.5, 4.0), (0.5, 0)]] :: [[(Double, Double)]]
>>> let ls = fmap (PointXY . uncurry Point) <$> xs
>>> let anns = zipWith (\w c -> LineA (LineStyle w c Nothing Nothing Nothing Nothing)) [0.015, 0.03, 0.01] palette1
>>> let lineChart = zipWith Chart anns ls
>>> writeChartSvgHud "other/lineshud.svg" lineChart

See "Chart" for a broad overview of concepts, and "Chart.Examples" for a variety of practical examples.