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.CSharp/ChartAPI/Chart2D.cs
+88Lines changed: 88 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1101,6 +1101,94 @@ public static GenericChart.GenericChart Candlestick<OHLCType, XType, TextType>(
1101
1101
WhiskerWidth:WhiskerWidth.ToOption(),
1102
1102
UseDefaults:UseDefaults.ToOption()
1103
1103
);
1104
+
/// <summary>
1105
+
/// Creates a waterfall chart.
1106
+
///
1107
+
/// Waterfall charts are special bar charts that help visualizing the cumulative effect of sequentially introduced positive or negative values
1108
+
/// </summary>
1109
+
/// <param name="x">Sets the x coordinates of the plotted data.</param>
1110
+
/// <param name="y">Sets the y coordinates of the plotted data.</param>
1111
+
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
1112
+
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
1113
+
/// <param name="IncreasingColor">Sets the color of increasing values</param>
1114
+
/// <param name="Increasing">Sets the style options of increasing values (use this for more finegrained control than the other increasing-associated arguments).</param>
1115
+
/// <param name="DecreasingColor">Sets the color of decreasing values</param>
1116
+
/// <param name="Decreasing">Sets the style options of decreasing values (use this for more finegrained control than the other increasing-associated arguments).</param>
1117
+
/// <param name="TotalsColor">Sets the color of total values</param>
1118
+
/// <param name="Totals">Sets the style options of total values (use this for more finegrained control than the other increasing-associated arguments).</param>
1119
+
/// <param name="Base">Sets where the bar base is drawn (in position axis units).</param>
1120
+
/// <param name="Width">Sets the bar width (in position axis units).</param>
1121
+
/// <param name="MultiWidth">Sets the individual bar width of each datum (in position axis units).</param>
1122
+
/// <param name="Opacity">Sets the opacity of the trace.</param>
1123
+
/// <param name="Text">Sets a text associated with each datum</param>
1124
+
/// <param name="MultiText">Sets individual text for each datum</param>
1125
+
/// <param name="TextPosition">Sets the position of text associated with each datum</param>
1126
+
/// <param name="MultiTextPosition">Sets the position of text associated with individual datum</param>
1127
+
/// <param name="TextFont">Sets the font used for `text`.</param>
1128
+
/// <param name="Connector">Sets the waterfall connector of this trace</param>
1129
+
/// <param name="Measure">An array containing types of measures. By default the values are considered as 'relative'. However; it is possible to use 'total' to compute the sums. Also 'absolute' could be applied to reset the computed total or to declare an initial value where needed.</param>
1130
+
/// <param name="AlignmentGroup">Set several traces linked to the same position axis or matching axes to the same alignmentgroup. This controls whether bars compute their positional range dependently or independently.</param>
1131
+
/// <param name="OffsetGroup">Set several traces linked to the same position axis or matching axes to the same offsetgroup where bars of the same position coordinate will line up.</param>
1132
+
/// <param name="Orientation">Only relevant when `stackgroup` is used, and only the first `orientation` found in the `stackgroup` will be used - including if `visible` is "legendonly" but not if it is `false`. Sets the stacking direction. With "v" ("h"), the y (x) values of subsequent traces are added. Also affects the default value of `fill`.</param>
1133
+
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
0 commit comments