@@ -6020,7 +6020,6 @@ module Chart2D =
6020
6020
/// <param name="x">Sets the x coordinates of the plotted data.</param>
6021
6021
/// <param name="y">Sets the y coordinates of the plotted data for the Y value.</param>
6022
6022
/// <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>
6024
6023
/// <param name="Name">Sets the trace name of the Y values. The trace name appear as the legend item and on hover</param>
6025
6024
/// <param name="ReferenceName">Sets the trace name of the reference Y values. The trace name appear as the legend item and on hover</param>
6026
6025
/// <param name="GroupName">Sets the name of the legendgroup for the three traces of this plot.</param>
@@ -6058,7 +6057,6 @@ module Chart2D =
6058
6057
x : seq < #IConvertible >,
6059
6058
y : seq < #IConvertible >,
6060
6059
reference : seq < #IConvertible >,
6061
- mode : StyleParam.Mode ,
6062
6060
? Name : string ,
6063
6061
? ReferenceName : string ,
6064
6062
? GroupName : string ,
@@ -6150,7 +6148,7 @@ module Chart2D =
6150
6148
Chart.Scatter(
6151
6149
x = x1,
6152
6150
y = y1,
6153
- mode = changeMode mode ,
6151
+ mode = changeMode StyleParam.Mode.Lines _ Markers ,
6154
6152
Opacity = 1. ,
6155
6153
Marker = marker,
6156
6154
?Name = Name,
@@ -6206,7 +6204,6 @@ module Chart2D =
6206
6204
/// <summary>Displays a residue Chart by displaying the y values in relation to the provided reference Values. </summary>
6207
6205
/// <param name="xy">Sets the x and y coordinates of the plotted data.</param>
6208
6206
/// <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>
6210
6207
/// <param name="Name">Sets the trace name of the Y values. The trace name appear as the legend item and on hover</param>
6211
6208
/// <param name="ReferenceName">Sets the trace name of the reference Y values. The trace name appear as the legend item and on hover</param>
6212
6209
/// <param name="GroupName">Sets the name of the legendgroup for the three traces of this plot.</param>
@@ -6243,7 +6240,6 @@ module Chart2D =
6243
6240
(
6244
6241
xy : seq < #IConvertible * #IConvertible >,
6245
6242
reference : seq < #IConvertible >,
6246
- mode : StyleParam.Mode ,
6247
6243
? Name : string ,
6248
6244
? ReferenceName : string ,
6249
6245
? GroupName : string ,
@@ -6283,7 +6279,6 @@ module Chart2D =
6283
6279
x = x,
6284
6280
y = y,
6285
6281
reference = reference,
6286
- mode = mode,
6287
6282
?Name = Name,
6288
6283
?ReferenceName = ReferenceName,
6289
6284
?GroupName = GroupName,
@@ -6321,7 +6316,6 @@ module Chart2D =
6321
6316
/// <summary>Displays a residue Chart by displaying the y values in relation to the provided reference Values. </summary>
6322
6317
/// <param name="xy">Sets the x and y coordinates of the plotted data.</param>
6323
6318
/// <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>
6325
6319
/// <param name="Name">Sets the trace name of the Y values. The trace name appear as the legend item and on hover</param>
6326
6320
/// <param name="ReferenceName">Sets the trace name of the reference Y values. The trace name appear as the legend item and on hover</param>
6327
6321
/// <param name="GroupName">Sets the name of the legendgroup for the three traces of this plot.</param>
@@ -6358,7 +6352,6 @@ module Chart2D =
6358
6352
(
6359
6353
xy : seq < #IConvertible * #IConvertible >,
6360
6354
referenceValue : #IConvertible ,
6361
- mode : StyleParam.Mode ,
6362
6355
? Name : string ,
6363
6356
? ReferenceName : string ,
6364
6357
? GroupName : string ,
@@ -6399,7 +6392,6 @@ module Chart2D =
6399
6392
x = x,
6400
6393
y = y,
6401
6394
reference = reference,
6402
- mode = mode,
6403
6395
?Name = Name,
6404
6396
?ReferenceName = ReferenceName,
6405
6397
?GroupName = GroupName,
@@ -6441,7 +6433,6 @@ module Chart2D =
6441
6433
/// <param name="x">Sets the x coordinates of the plotted data.</param>
6442
6434
/// <param name="y">Sets the y coordinates of the plotted data.</param>
6443
6435
/// <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>
6445
6436
/// <param name="Name">Sets the trace name of the Y values. The trace name appear as the legend item and on hover</param>
6446
6437
/// <param name="ReferenceName">Sets the trace name of the reference Y values. The trace name appear as the legend item and on hover</param>
6447
6438
/// <param name="GroupName">Sets the name of the legendgroup for the three traces of this plot.</param>
@@ -6479,7 +6470,6 @@ module Chart2D =
6479
6470
x : seq < #IConvertible >,
6480
6471
y : seq < #IConvertible >,
6481
6472
referenceValue : #IConvertible ,
6482
- mode : StyleParam.Mode ,
6483
6473
? Name : string ,
6484
6474
? ReferenceName : string ,
6485
6475
? GroupName : string ,
@@ -6519,7 +6509,6 @@ module Chart2D =
6519
6509
x = x,
6520
6510
y = y,
6521
6511
reference = reference,
6522
- mode = mode,
6523
6512
?Name = Name,
6524
6513
?ReferenceName = ReferenceName,
6525
6514
?GroupName = GroupName,
0 commit comments