elm | ||||
---|---|---|---|---|
|
import VegaLite exposing (..)
Teaser ^^^elm v=barChart^^^
barChart : Spec
barChart =
let
enc =
encoding
<< position X [ pName "AvHireTime" ]
<< position Y [ pAggregate opCount ]
in
toVegaLite
[ dataFromUrl "http://gicentre.github.io/data/bicycleHiresLondon.csv" []
, enc []
, bar []
]
^^^elm v=barChart^^^