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
@@ -101,8 +85,8 @@ public static GenericChart.GenericChart Scatter<XType,YType,TextType>(
101
85
y:y,
102
86
mode:mode,
103
87
Name:Helpers.ToOption(Name),
104
-
ShowLegend:Helpers.ToOption(ShowLegend),
105
-
Opacity:Helpers.ToOption(Opacity),
88
+
ShowLegend:Helpers.ToOptionV(ShowLegend),
89
+
Opacity:Helpers.ToOptionV(Opacity),
106
90
MultiOpacity:Helpers.ToOption(MultiOpacity),
107
91
Text:Helpers.ToOption(Text),
108
92
MultiText:Helpers.ToOption(MultiText),
@@ -116,16 +100,189 @@ public static GenericChart.GenericChart Scatter<XType,YType,TextType>(
116
100
Marker:Helpers.ToOption(Marker),
117
101
LineColor:Helpers.ToOption(LineColor),
118
102
LineColorScale:Helpers.ToOption(LineColorScale),
119
-
LineWidth:Helpers.ToOption(LineWidth),
103
+
LineWidth:Helpers.ToOptionV(LineWidth),
120
104
LineDash:Helpers.ToOption(LineDash),
121
105
Line:Helpers.ToOption(Line),
122
106
StackGroup:Helpers.ToOption(StackGroup),
123
107
Orientation:Helpers.ToOption(Orientation),
124
108
GroupNorm:Helpers.ToOption(GroupNorm),
125
109
Fill:Helpers.ToOption(Fill),
126
110
FillColor:Helpers.ToOption(FillColor),
127
-
UseWebGL:Helpers.ToOption(UseWebGL),
128
-
UseDefaults:Helpers.ToOption(UseDefaults)
111
+
UseWebGL:Helpers.ToOptionV(UseWebGL),
112
+
UseDefaults:Helpers.ToOptionV(UseDefaults)
129
113
);
114
+
115
+
/// <summary>
116
+
/// Creates a Point chart, which uses Points in a 2D space to visualize data.
117
+
/// </summary>
118
+
/// <param name="x">Sets the x coordinates of the plotted data.</param>
119
+
/// <param name="y">Sets the y coordinates of the plotted data.</param>
120
+
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
121
+
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
122
+
/// <param name="Opacity">Sets the opactity of the trace</param>
123
+
/// <param name="MultiOpacity">Sets the opactity of individual datum markers</param>
124
+
/// <param name="Text">Sets a text associated with each datum</param>
125
+
/// <param name="MultiText">Sets individual text for each datum</param>
126
+
/// <param name="TextPosition">Sets the position of text associated with each datum</param>
127
+
/// <param name="MultiTextPosition">Sets the position of text associated with individual datum</param>
128
+
/// <param name="MarkerColor">Sets the color of the marker</param>
129
+
/// <param name="MarkerColorScale">Sets the colorscale of the marker</param>
130
+
/// <param name="MarkerOutline">Sets the outline of the marker</param>
131
+
/// <param name="MarkerSymbol">Sets the marker symbol for each datum</param>
132
+
/// <param name="MultiMarkerSymbol">Sets the marker symbol for each individual datum</param>
133
+
/// <param name="Marker">Sets the marker (use this for more finegrained control than the other marker-associated arguments)</param>
134
+
/// <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>
135
+
/// <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>
136
+
/// <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>
137
+
/// <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>
138
+
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
/// <summary> Creates a Line chart, which uses a Line plotted between the given datums in a 2D space to visualize typically an evolution of Y depending on X.</summary>
191
+
/// <param name="x">Sets the x coordinates of the plotted data.</param>
192
+
/// <param name="y">Sets the y coordinates of the plotted data.</param>
193
+
/// <param name="ShowMarkers">Wether to show markers for the individual data points</param>
194
+
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
195
+
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
196
+
/// <param name="Opacity">Sets the opactity of the trace</param>
197
+
/// <param name="MultiOpacity">Sets the opactity of individual datum markers</param>
198
+
/// <param name="Text">Sets a text associated with each datum</param>
199
+
/// <param name="MultiText">Sets individual text for each datum</param>
200
+
/// <param name="TextPosition">Sets the position of text associated with each datum</param>
201
+
/// <param name="MultiTextPosition">Sets the position of text associated with individual datum</param>
202
+
/// <param name="MarkerColor">Sets the color of the marker</param>
203
+
/// <param name="MarkerColorScale">Sets the colorscale of the marker</param>
204
+
/// <param name="MarkerOutline">Sets the outline of the marker</param>
205
+
/// <param name="MarkerSymbol">Sets the marker symbol for each datum</param>
206
+
/// <param name="MultiMarkerSymbol">Sets the marker symbol for each individual datum</param>
207
+
/// <param name="Marker">Sets the marker (use this for more finegrained control than the other marker-associated arguments)</param>
208
+
/// <param name="LineColor">Sets the color of the line</param>
209
+
/// <param name="LineColorScale">Sets the colorscale of the line</param>
210
+
/// <param name="LineWidth">Sets the width of the line</param>
211
+
/// <param name="LineDash">sets the drawing style of the line</param>
212
+
/// <param name="Line">Sets the line (use this for more finegrained control than the other line-associated arguments)</param>
213
+
/// <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>
214
+
/// <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>
215
+
/// <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>
216
+
/// <param name="Fill">Sets the area to fill with a solid color. Defaults to "none" unless this trace is stacked, then it gets "tonexty" ("tonextx") if `orientation` is "v" ("h") Use with `FillColor` if not "none". "tozerox" and "tozeroy" fill to x=0 and y=0 respectively. "tonextx" and "tonexty" fill between the endpoints of this trace and the endpoints of the trace before it, connecting those endpoints with straight lines (to make a stacked area graph); if there is no trace before it, they behave like "tozerox" and "tozeroy". "toself" connects the endpoints of the trace (or each segment of the trace if it has gaps) into a closed shape. "tonext" fills the space between two traces if one completely encloses the other (eg consecutive contour lines), and behaves like "toself" if there is no trace before it. "tonext" should not be used if one trace does not enclose the other. 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>
217
+
/// <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>
218
+
/// <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>
219
+
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
0 commit comments