elm-charts
elm-charts copied to clipboard
A pure Elm chart library 📈
elm-charts
A pure Elm chart library
This project is still in alpha. APIs might change heavily in the future.
To Try
git clone https://github.com/wuct/elm-charts.gitcd elm-chartselm package installelm reactor- go to http://localhost:8000/examples/Example.elm
To Install
elm package install wuct/elm-charts
Update to Elm >= 0.18
Run
elm-package install elm-lang/svg 2.0.0 elm-package install elm-lang/core 5.1.1
Or update existing packages
Quick Example
import Svg exposing (svg)
import Svg.Attributes exposing (width, height)
import Chart exposing (Scale, Data)
import BarChart exposing (barChart, color, width)
import LineChart exposing (lineChart, color, width)
import ScatterPlot exposing (scatterPlot, color, size)
data : Data msg
data =
[
(1, 22.2, []),
(2, 34, []),
(3, 56, [BarChart.color "yellowgreen"]),
(4, 62, []),
(5, 77, [])
]
xScale : Scale
xScale x =
20 + x * 20
yScale : Scale
yScale y =
600 - y * 3
main =
svg
[
Svg.Attributes.width "1000",
Svg.Attributes.height "600"
]
[
barChart
[
BarChart.color "pink",
BarChart.width "10"
]
{ data = data
, xScale = xScale
, yScale = yScale
},
lineChart
[
LineChart.color "#7E94C7"
]
{ data = data
, xScale = xScale
, yScale = (\y -> 500 - y * 3)
},
scatterPlot
[]
{ data = data
, xScale = xScale
, yScale = (\y -> 400 - y * 3)
}
]
To Contribute
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request