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/Layout/Layout.fs
+16-16Lines changed: 16 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -224,7 +224,7 @@ type Layout() =
224
224
)
225
225
226
226
/// <summary>
227
-
/// Returns a function ahat applies the given styles to a Layout object.
227
+
/// Returns a function that applies the given styles to a Layout object.
228
228
/// </summary>
229
229
/// <param name="Title">Sets the title of the layout.</param>
230
230
/// <param name="ShowLegend">Determines whether or not a legend is drawn. Default is `true` if there is a trace to show and any of these: a) Two or more traces would by default be shown in the legend. b) One pie trace is shown in the legend. c) One trace is explicitly given with `showlegend: true`.</param>
@@ -483,8 +483,8 @@ type Layout() =
483
483
/// If there is no linear axis set, returns an empty LinearAxis object.
/// Contains general, visualization-unspecific functions to style Trace objects.
201
278
///
@@ -235,7 +312,7 @@ type TraceStyle() =
235
312
trace)
236
313
237
314
/// <summary>
238
-
/// Returns a function that applies the given styles to the trace's marker object.
315
+
/// Returns a function that applies the given styles to the trace's marker object. Overwrites attributes with the same name that are already set.
239
316
/// </summary>
240
317
/// <param name="AutoColorScale">Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `marker.colorscale`. Has an effect only if in `marker.color`is set to a numerical array. In case `colorscale` is unspecified or `autocolorscale` is true, the default palette will be chosen according to whether numbers in the `color` array are all positive, all negative or mixed.</param>
241
318
/// <param name="CAuto">Determines whether or not the color domain is computed with respect to the input data (here in `marker.color`) or the bounds set in `marker.cmin` and `marker.cmax` Has an effect only if in `marker.color`is set to a numerical array. Defaults to `false` when `marker.cmin` and `marker.cmax` are set by the user.</param>
@@ -337,7 +414,7 @@ type TraceStyle() =
337
414
trace |> Trace.setMarker (marker))
338
415
339
416
/// <summary>
340
-
/// Returns a function that applies the given styles to the trace's line object.
417
+
/// Returns a function that applies the given styles to the trace's line object. Overwrites attributes with the same name that are already set.
341
418
/// </summary>
342
419
/// <param name="AutoColorScale">Determines whether the colorscale is a default palette (`autocolorscale: true`) or the palette determined by `line.colorscale`. Has an effect only if in `line.color`is set to a numerical array. In case `colorscale` is unspecified or `autocolorscale` is true, the default palette will be chosen according to whether numbers in the `color` array are all positive, all negative or mixed.</param>
343
420
/// <param name="CAuto">Determines whether or not the color domain is computed with respect to the input data (here in `line.color`) or the bounds set in `line.cmin` and `line.cmax` Has an effect only if in `line.color`is set to a numerical array. Defaults to `false` when `line.cmin` and `line.cmax` are set by the user.</param>
@@ -409,7 +486,7 @@ type TraceStyle() =
409
486
trace |> Trace.setLine (line))
410
487
411
488
/// <summary>
412
-
/// Returns a function that applies the given styles to the trace's Error object for the x dimension.
489
+
/// Returns a function that applies the given styles to the trace's Error object for the x dimension. Overwrites attributes with the same name that are already set.
413
490
/// </summary>
414
491
/// <param name ="Visible">Determines whether or not this set of error bars is visible.</param>
415
492
/// <param name ="Type">Determines the rule used to generate the error bars. If "constant`, the bar lengths are of a constant value. Set this constant in `value`. If "percent", the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If "sqrt", the bar lengths correspond to the square of the underlying data. If "data", the bar lengths are set with data set `array`.</param>
@@ -463,7 +540,7 @@ type TraceStyle() =
463
540
trace |> Trace.setXError (xerror))
464
541
465
542
/// <summary>
466
-
/// Returns a function that applies the given styles to the trace's Error object for the y dimension.
543
+
/// Returns a function that applies the given styles to the trace's Error object for the y dimension. Overwrites attributes with the same name that are already set.
467
544
/// </summary>
468
545
/// <param name ="Visible">Determines whether or not this set of error bars is visible.</param>
469
546
/// <param name ="Type">Determines the rule used to generate the error bars. If "constant`, the bar lengths are of a constant value. Set this constant in `value`. If "percent", the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If "sqrt", the bar lengths correspond to the square of the underlying data. If "data", the bar lengths are set with data set `array`.</param>
0 commit comments