Summary: This example shows how to create funnel area charts in F#.
let's first create some data for the purpose of creating example charts:
let values = [|5; 4; 3; 2; 1|]
let text = [|"The 1st"; "The 2nd"; "The 3rd"; "The 4th"; "The 5th"|]
FunnelArea charts visualize stages in a process using area-encoded trapezoids. This trace can be used to show data in a part-to-whole representation similar to a "pie" trace, wherein each item appears in a single stage. See also the the Funnel chart for a different approach to visualizing funnel data.
open Plotly.NET
let line = Line.init (Color="purple", Width=3.)
let funnelArea =
Chart.FunnelArea(Values=values, Text=text, Line=line)