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
+67Lines changed: 67 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -971,5 +971,72 @@ public static GenericChart.GenericChart PointDensity<XType, YType>(
971
971
ShowScale:ShowScale.ToOption(),
972
972
UseDefaults:UseDefaults.ToOption()
973
973
);
974
+
975
+
/// <summary>
976
+
/// Creates an OHLC chart.
977
+
///
978
+
/// The ohlc (short for Open-High-Low-Close) is a style of financial chart describing open, high, low and close for a given `x` coordinate (most likely time). The tip of the lines represent the `low` and `high` values and the horizontal segments represent the `open` and `close` values. Sample points where the close value is higher (lower) then the open value are called increasing (decreasing). By default, increasing items are drawn in green whereas decreasing are drawn in red.
979
+
/// </summary>
980
+
/// <param name="open">Sets the open values.</param>
981
+
/// <param name="high">Sets the high values.</param>
982
+
/// <param name="low">Sets the low values.</param>
983
+
/// <param name="close">Sets the close values.</param>
984
+
/// <param name="x">Sets the x coordinates. If absent, linear coordinate will be generated.</param>
985
+
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover.</param>
986
+
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
987
+
/// <param name="Opacity">Sets the Opacity otf the trace.</param>
988
+
/// <param name="Text">Sets a text associated with each datum</param>
989
+
/// <param name="MultiText">Sets individual text for each datum</param>
990
+
/// <param name="Line">Sets the line of this trace.</param>
991
+
/// <param name="IncreasingColor">Sets the color of increasing values</param>
992
+
/// <param name="Increasing">Sets the style options of increasing values (use this for more finegrained control than the other increasing-associated arguments).</param>
993
+
/// <param name="DecreasingColor">Sets the color of decreasing values</param>
994
+
/// <param name="Decreasing">Sets the style options of decreasing values (use this for more finegrained control than the other increasing-associated arguments).</param>
995
+
/// <param name="TickWidth">Sets the width of the open/close tick marks relative to the "x" minimal interval.</param>
996
+
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
0 commit comments