Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/terezka/charts
- Owner: terezka
- License: bsd-3-clause
- Created: 2017-04-14T19:24:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-10-26T17:11:19.000Z (about 3 years ago)
- Last Synced: 2024-10-12T20:20:54.097Z (about 1 month ago)
- Topics: cartesian, charts, coordinates, elm, svg
- Language: Elm
- Homepage: https://alpha.elm-charts.org/
- Size: 22.5 MB
- Stars: 15
- Watchers: 1
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 CAmain : 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
]
```