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
+94Lines changed: 94 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -601,6 +601,100 @@ public static GenericChart.GenericChart Range<XType, YType, TextType>(
601
601
UseDefaults:UseDefaults.ToOption()
602
602
);
603
603
604
+
/// <summary> Creates an Area chart, which uses a Line plotted between the given datums in a 2D space, additionally colouring the area between the line and the Y Axis.</summary>
605
+
/// <param name="x">Sets the x coordinates of the plotted data.</param>
606
+
/// <param name="y">Sets the y coordinates of the plotted data.</param>
607
+
/// <param name="ShowMarkers">Wether to show markers for the individual data points</param>
608
+
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
609
+
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
610
+
/// <param name="Opacity">Sets the opactity of the trace</param>
611
+
/// <param name="MultiOpacity">Sets the opactity of individual datum markers</param>
612
+
/// <param name="Text">Sets a text associated with each datum</param>
613
+
/// <param name="MultiText">Sets individual text for each datum</param>
614
+
/// <param name="TextPosition">Sets the position of text associated with each datum</param>
615
+
/// <param name="MultiTextPosition">Sets the position of text associated with individual datum</param>
616
+
/// <param name="MarkerColor">Sets the color of the marker</param>
617
+
/// <param name="MarkerColorScale">Sets the colorscale of the marker</param>
618
+
/// <param name="MarkerOutline">Sets the outline of the marker</param>
619
+
/// <param name="MarkerSymbol">Sets the marker symbol for each datum</param>
620
+
/// <param name="MultiMarkerSymbol">Sets the marker symbol for each individual datum</param>
621
+
/// <param name="Marker">Sets the marker (use this for more finegrained control than the other marker-associated arguments)</param>
622
+
/// <param name="LineColor">Sets the color of the line</param>
623
+
/// <param name="LineColorScale">Sets the colorscale of the line</param>
624
+
/// <param name="LineWidth">Sets the width of the line</param>
625
+
/// <param name="LineDash">sets the drawing style of the line</param>
626
+
/// <param name="Line">Sets the line (use this for more finegrained control than the other line-associated arguments)</param>
627
+
/// <param name="StackGroup">Set several traces (on the same subplot) to the same stackgroup in order to add their y values (or their x values if `Orientation` is Horizontal). Stacking also turns `fill` on by default and sets the default `mode` to "lines" irrespective of point count. ou can only stack on a numeric (linear or log) axis. Traces in a `stackgroup` will only fill to (or be filled to) other traces in the same group. With multiple `stackgroup`s or some traces stacked and some not, if fill-linked traces are not already consecutive, the later ones will be pushed down in the drawing order</param>
628
+
/// <param name="Orientation">Sets the stacking direction. Only relevant when `stackgroup` is used, and only the first `orientation` found in the `stackgroup` will be used.</param>
629
+
/// <param name="GroupNorm">Sets the normalization for the sum of this `stackgroup. Only relevant when `stackgroup` is used, and only the first `groupnorm` found in the `stackgroup` will be used</param>
630
+
/// <param name="FillColor">ets the fill color. Defaults to a half-transparent variant of the line color, marker color, or marker line color, whichever is available.</param>
631
+
/// <param name="UseWebGL">If true, plotly.js will use the WebGL engine to render this chart. use this when you want to render many objects at once.</param>
632
+
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
0 commit comments