Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/terezka/charts

Make charts! Alpha version.
https://github.com/terezka/charts

cartesian charts coordinates elm svg

Last synced: 17 days ago
JSON representation

Make charts! Alpha version.

Awesome Lists containing this project

README

        

# elm-charts-alpha

This is the alpha version of [`terezka/elm-charts`](https://package.elm-lang.org/packages/terezka/elm-charts/latest/). This has faster updates, but also more breaking changes! Currently published on Elm packages as `terezka/charts`, but may be moved to `terezka/elm-charts-alpha` soon.

```elm

import Chart as C
import Chart.Attributes as CA

main : Svg msg
main =
C.chart
[ CA.height 300
, CA.width 300
]
[ C.xTicks []
, C.yTicks []
, C.xLabels []
, C.yLabels []
, C.xAxis []
, C.yAxis []
, C.series .x
[ C.scatter .y []
, C.scatter .z []
]
data
]
```