You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Plotly.NET/Chart.fs
+84-1
Original file line number
Diff line number
Diff line change
@@ -1995,7 +1995,7 @@ type Chart =
1995
1995
|> GenericChart.ofTraceObject
1996
1996
1997
1997
/// Creates a Funnel chart.
1998
-
/// Funnel charts Visualize stages in a process using length-encoded bars. This trace can be used to show data in either a part-to-whole representation wherein each item appears in a single stage, or in a "drop-off" representation wherein each item appears in each stage it traversed. See also the "funnelarea" trace type for a different approach to visualizing funnel data.
1998
+
/// Funnel charts visualize stages in a process using length-encoded bars. This trace can be used to show data in either a part-to-whole representation wherein each item appears in a single stage, or in a "drop-off" representation wherein each item appears in each stage it traversed. See also the "funnelarea" trace type for a different approach to visualizing funnel data.
/// 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 "funnel" trace type for a different approach to visualizing funnel data.
2097
+
///
2098
+
/// Parameters:
2099
+
///
2100
+
/// Values : Sets the values of the sectors. If omitted, we count occurrences of each label.
2101
+
///
2102
+
/// Labels : Sets the sector labels. If `labels` entries are duplicated, we sum associated `values` or simply count occurrences if `values` is not provided. For other array attributes (including color) we use the first non-empty entry among all occurrences of the label.
2103
+
///
2104
+
/// dLabel : Sets the label step. See `label0` for more info.
2105
+
///
2106
+
/// Label0 : Alternate to `labels`. Builds a numeric set of labels. Use with `dlabel` where `label0` is the starting label and `dlabel` the step.
2107
+
///
2108
+
/// Name : Sets the trace name. The trace name appear as the legend item and on hover.
2109
+
///
2110
+
/// Showlegend : Determines whether or not an item corresponding to this trace is shown in the legend.
2111
+
///
2112
+
/// Opacity : Sets the opacity of the trace.
2113
+
///
2114
+
/// Color : Sets Marker Color
2115
+
///
2116
+
/// Line : Line type
2117
+
///
2118
+
/// Text : Sets text elements associated with each sector. If trace `textinfo` contains a "text" flag, these elements will be seen on the chart. If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels.
2119
+
///
2120
+
/// TextPosition : Specifies the location of the `textinfo`.
2121
+
///
2122
+
/// X : Sets the horizontal domain of this funnelarea trace (in plot fraction).
2123
+
///
2124
+
/// Y : Sets the vertical domain of this funnelarea trace (in plot fraction).
2125
+
///
2126
+
/// Row : If there is a layout grid, use the domain for this row in the grid for this funnelarea trace .
2127
+
///
2128
+
/// Column : If there is a layout grid, use the domain for this column in the grid for this funnelarea trace .
2129
+
///
2130
+
/// Aspectratio : Sets the ratio between height and width
2131
+
///
2132
+
/// Baseratio : Sets the ratio between bottom length and maximum top length.
2133
+
///
2134
+
/// Insidetextfont: Sets the font used for `textinfo` lying inside the sector.
2135
+
///
2136
+
/// Scalegroup : If there are multiple funnelareas that should be sized according to their totals, link them by providing a non-empty group id here shared by every trace in the same group.
/// Creates a ScatterGeo chart, where data is visualized on a geographic map.
2096
2179
/// ScatterGeo charts are the basis of GeoPoint, GeoLine, and GeoBubble Charts, and can be customized as such. We also provide abstractions for those: Chart.GeoPoint, Chart.GeoLine, Chart.GeoBubble
0 commit comments