@@ -6020,7 +6020,6 @@ module Chart2D =
60206020 /// <param name="x">Sets the x coordinates of the plotted data.</param>
60216021 /// <param name="y">Sets the y coordinates of the plotted data for the Y value.</param>
60226022 /// <param name="reference">Sets the y coordinates for reference Y value.</param>
6023- /// <param name="mode">Determines the drawing mode for this scatter trace.</param>
60246023 /// <param name="Name">Sets the trace name of the Y values. The trace name appear as the legend item and on hover</param>
60256024 /// <param name="ReferenceName">Sets the trace name of the reference Y values. The trace name appear as the legend item and on hover</param>
60266025 /// <param name="GroupName">Sets the name of the legendgroup for the three traces of this plot.</param>
@@ -6058,7 +6057,6 @@ module Chart2D =
60586057 x : seq < #IConvertible >,
60596058 y : seq < #IConvertible >,
60606059 reference : seq < #IConvertible >,
6061- mode : StyleParam.Mode ,
60626060 ? Name : string ,
60636061 ? ReferenceName : string ,
60646062 ? GroupName : string ,
@@ -6150,7 +6148,7 @@ module Chart2D =
61506148 Chart.Scatter(
61516149 x = x1,
61526150 y = y1,
6153- mode = changeMode mode ,
6151+ mode = changeMode StyleParam.Mode.Lines _ Markers ,
61546152 Opacity = 1. ,
61556153 Marker = marker,
61566154 ?Name = Name,
@@ -6206,7 +6204,6 @@ module Chart2D =
62066204 /// <summary>Displays a residue Chart by displaying the y values in relation to the provided reference Values. </summary>
62076205 /// <param name="xy">Sets the x and y coordinates of the plotted data.</param>
62086206 /// <param name="reference">Sets the y coordinates for reference Y value.</param>
6209- /// <param name="mode">Determines the drawing mode for this scatter trace.</param>
62106207 /// <param name="Name">Sets the trace name of the Y values. The trace name appear as the legend item and on hover</param>
62116208 /// <param name="ReferenceName">Sets the trace name of the reference Y values. The trace name appear as the legend item and on hover</param>
62126209 /// <param name="GroupName">Sets the name of the legendgroup for the three traces of this plot.</param>
@@ -6243,7 +6240,6 @@ module Chart2D =
62436240 (
62446241 xy : seq < #IConvertible * #IConvertible >,
62456242 reference : seq < #IConvertible >,
6246- mode : StyleParam.Mode ,
62476243 ? Name : string ,
62486244 ? ReferenceName : string ,
62496245 ? GroupName : string ,
@@ -6283,7 +6279,6 @@ module Chart2D =
62836279 x = x,
62846280 y = y,
62856281 reference = reference,
6286- mode = mode,
62876282 ?Name = Name,
62886283 ?ReferenceName = ReferenceName,
62896284 ?GroupName = GroupName,
@@ -6321,7 +6316,6 @@ module Chart2D =
63216316 /// <summary>Displays a residue Chart by displaying the y values in relation to the provided reference Values. </summary>
63226317 /// <param name="xy">Sets the x and y coordinates of the plotted data.</param>
63236318 /// <param name="referenceValue">Sets the y coordinate for reference Y value.</param>
6324- /// <param name="mode">Determines the drawing mode for this scatter trace.</param>
63256319 /// <param name="Name">Sets the trace name of the Y values. The trace name appear as the legend item and on hover</param>
63266320 /// <param name="ReferenceName">Sets the trace name of the reference Y values. The trace name appear as the legend item and on hover</param>
63276321 /// <param name="GroupName">Sets the name of the legendgroup for the three traces of this plot.</param>
@@ -6358,7 +6352,6 @@ module Chart2D =
63586352 (
63596353 xy : seq < #IConvertible * #IConvertible >,
63606354 referenceValue : #IConvertible ,
6361- mode : StyleParam.Mode ,
63626355 ? Name : string ,
63636356 ? ReferenceName : string ,
63646357 ? GroupName : string ,
@@ -6399,7 +6392,6 @@ module Chart2D =
63996392 x = x,
64006393 y = y,
64016394 reference = reference,
6402- mode = mode,
64036395 ?Name = Name,
64046396 ?ReferenceName = ReferenceName,
64056397 ?GroupName = GroupName,
@@ -6441,7 +6433,6 @@ module Chart2D =
64416433 /// <param name="x">Sets the x coordinates of the plotted data.</param>
64426434 /// <param name="y">Sets the y coordinates of the plotted data.</param>
64436435 /// <param name="referenceValue">Sets the y coordinate for reference Y value.</param>
6444- /// <param name="mode">Determines the drawing mode for this scatter trace.</param>
64456436 /// <param name="Name">Sets the trace name of the Y values. The trace name appear as the legend item and on hover</param>
64466437 /// <param name="ReferenceName">Sets the trace name of the reference Y values. The trace name appear as the legend item and on hover</param>
64476438 /// <param name="GroupName">Sets the name of the legendgroup for the three traces of this plot.</param>
@@ -6479,7 +6470,6 @@ module Chart2D =
64796470 x : seq < #IConvertible >,
64806471 y : seq < #IConvertible >,
64816472 referenceValue : #IConvertible ,
6482- mode : StyleParam.Mode ,
64836473 ? Name : string ,
64846474 ? ReferenceName : string ,
64856475 ? GroupName : string ,
@@ -6519,7 +6509,6 @@ module Chart2D =
65196509 x = x,
65206510 y = y,
65216511 reference = reference,
6522- mode = mode,
65236512 ?Name = Name,
65246513 ?ReferenceName = ReferenceName,
65256514 ?GroupName = GroupName,
0 commit comments