Arkham / elm-chords / Chords.Chart

Export a chord voicing to SVG


type alias Config =
{ height : Basics.Int
, width : Basics.Int
, hPaddingPct : Basics.Float
, vPaddingPct : Basics.Float
, minFrets : Basics.Int 
}

Contains options to customize SVG.

Charts

view : String -> Chords.Voicing -> Svg msg

Render a chord voicing and a label to SVG.

viewWith : Config -> String -> Chords.Voicing -> Svg msg

Render a chord voicing and a label to SVG passing along customizations.