BSD-3-Clause licensed by Tony Day
Maintained by [email protected]
This version can be pinned in stack with:chart-svg-0.3.2@sha256:43ef8268bd21a8e3f005608525dc965e50b0de57ec55e1cbf2f92a5cb558ae6b,2640

This package provides a charting library targetting SVG as the rendered output.

Usage

:set -XOverloadedLabels
:set -XOverloadedStrings
import Chart
import Optics.Core
let lines = [[Point 0.0 1.0, Point 1.0 1.0, Point 2.0 5.0],[Point 0.0 0.0, Point 2.8 3.0],[Point 0.5 4.0, Point 0.5 0]]
let styles = (\c -> defaultLineStyle & #color .~ palette1 c & #size .~ 0.015) <$> [0..2]
let cs = zipWith (\s x -> LineChart s [x]) styles lines
let lineExample = mempty & #charts .~ named "line" cs & #hudOptions .~ defaultHudOptions :: ChartSvg
writeChartSvg "other/usage.svg" lineExample

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