Skip to content

Instantly share code, notes, and snippets.

@TahaHachana
Created December 16, 2015 16:31
Show Gist options
  • Save TahaHachana/f9bd8557b139a104a8a4 to your computer and use it in GitHub Desktop.
Save TahaHachana/f9bd8557b139a104a8a4 to your computer and use it in GitHub Desktop.
let options =
Options(
sankey =
Sankey (
node =
Node(
label = Label(fontSize = 50)
)
)
)
[
"A", "X", 5
"A", "Y", 7
"A", "Z", 6
"B", "X", 2
"B", "Y", 9
"B", "Z", 4
]
|> Chart.Sankey
|> Chart.WithHeight 300
|> Chart.WithWidth 600
|> Chart.WithOptions options
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment