terezka / elm-charts

Create SVG charts in Elm.
https://www.elm-charts.org
BSD 3-Clause "New" or "Revised" License
698 stars 67 forks source link

`yTick` takes a vestigal argument #90

Closed jhbrown-veradept closed 2 years ago

jhbrown-veradept commented 2 years ago

xTick and yTick have different signatures, with yTick taking an extra Float:

xTick : List (Attribute Tick) -> Element data msg
yTick : List (Attribute Tick) -> Float -> Element data msg

From a quick scan of the source code, it looks like the Float argument is not used in yTick.