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
/// Creates a chart that is completely invisible when rendered. The Chart object however is NOT empty! Combining this chart with other charts will have unforseen consequences (it has for example invisible axes that can override other axes if used in Chart.Combine)
Copy file name to clipboardExpand all lines: src/Plotly.NET.CSharp/ChartAPI/Chart2D.cs
+3-5
Original file line number
Diff line number
Diff line change
@@ -18,11 +18,9 @@ public static partial class Chart
18
18
///
19
19
/// Scatter charts are the basis of Point, Line, and Bubble Charts, and can be customized as such. We also provide abstractions for those: Chart.Line, Chart.Point, Chart.Bubble
20
20
/// </summary>
21
-
/// <param name="X">Sets the x coordinates of the plotted data.</param>
22
-
/// <param name="MultiX">Sets the x coordinates of the plotted data. Use two inner arrays here to plot multicategorial data</param>
23
-
/// <param name="Y">Sets the y coordinates of the plotted data.</param>
24
-
/// <param name="MultiY">Sets the x coordinates of the plotted data. Use two inner arrays here to plot multicategorial data</param>
25
-
/// <param name="Mode">Determines the drawing mode for this scatter trace.</param>
21
+
/// <param name="x">Sets the x coordinates of the plotted data.</param>
22
+
/// <param name="y">Sets the y coordinates of the plotted data.</param>
23
+
/// <param name="mode">Determines the drawing mode for this scatter trace.</param>
26
24
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
27
25
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
28
26
/// <param name="Opacity">Sets the opactity of the trace</param>
Copy file name to clipboardExpand all lines: src/Plotly.NET/ChartAPI/Chart.fs
+17-2
Original file line number
Diff line number
Diff line change
@@ -664,6 +664,10 @@ type Chart =
664
664
/// <summary>
665
665
/// Applies the given styles to the ColorBar object(s) of the chart's trace(s). Overwrites attributes with the same name that are already set.
666
666
/// </summary>
667
+
/// <param name="TitleText">Sets the colorbar's title</param>
668
+
/// <param name="TitleFont">Sets the title font.</param>
669
+
/// <param name="TitleStandoff">Sets the standoff distance (in px) between the axis labels and the title text The default value is a function of the axis tick labels, the title `font.size` and the axis `linewidth`. Note that the axis title position is always constrained within the margins, so the actual standoff distance is always less than the set or default value. By setting `standoff` and turning on `automargin`, plotly.js will push the margins to fit the axis title at given standoff distance.</param>
670
+
/// <param name="Title">Sets the Title object (use this for more finegrained control than the other title-associated arguments)</param>
667
671
/// <param name="BGColor">Sets the color of padded area.</param>
668
672
/// <param name="BorderColor">Sets the axis line color.</param>
669
673
/// <param name="BorderWidth">Sets the width (in px) or the border enclosing this color bar.</param>
@@ -700,7 +704,6 @@ type Chart =
700
704
/// <param name="TickText">Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to "array". Used with `tickvals`.</param>
701
705
/// <param name="TickVals">Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to "array". Used with `ticktext`.</param>
702
706
/// <param name="TickWidth">Sets the tick width (in px).</param>
703
-
/// <param name="Title">Sets the ColorBar title.</param>
704
707
/// <param name="X">Sets the x position of the color bar (in plot fraction).</param>
705
708
/// <param name="XAnchor">Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the "left", "center" or "right" of the color bar.</param>
706
709
/// <param name="XPad">Sets the amount of padding (in px) along the x direction.</param>
@@ -3690,12 +3693,20 @@ type Chart =
3690
3693
/// <summary>
3691
3694
/// Applies the given styles to the chart's DisplayOptions object. Overwrites attributes with the same name that are already set.
3692
3695
/// </summary>
3696
+
/// <param name="DocumentTitle">The title metadata for the document</param>
/// <param name="AdditionalHeadTags">Additional tags that will be included in the document's head </param>
3694
-
/// <param name="Description">HTML tags that appear below the chart in HTML docs</param>
3701
+
/// <param name="ChartDescription">HTML tags that appear below the chart in HTML docs</param>
3695
3702
/// <param name="PlotlyJSReference">Sets how plotly is referenced in the head of html docs. When CDN, a script tag that references the plotly.js CDN is included in the output. When Full, a script tag containing the plotly.js source code (~3MB) is included in the output. HTML files generated with this option are fully self-contained and can be used offline</param>
Copy file name to clipboardExpand all lines: src/Plotly.NET/ChartAPI/Chart2D.fs
+4-5
Original file line number
Diff line number
Diff line change
@@ -4398,7 +4398,7 @@ module Chart2D =
4398
4398
/// <param name="ContoursOperation">Sets the constraint operation. "=" keeps regions equal to `value` "<" and "<=" keep regions less than `value` ">" and ">=" keep regions greater than `value` "[]", "()", "[)", and "(]" keep regions inside `value[0]` to `value[1]` "][", ")(", "](", ")[" keep regions outside `value[0]` to value[1]` Open vs. closed intervals make no difference to constraint display, but all versions are allowed for consistency with filter transforms.</param>
4399
4399
/// <param name="ContoursType">If `levels`, the data is represented as a contour plot with multiple levels displayed. If `constraint`, the data is represented as constraints with the invalid region shaded as specified by the `operation` and `value` parameters.</param>
4400
4400
/// <param name="ShowContoursLabels">Determines whether to label the contour lines with their values.</param>
4401
-
/// <param name="ContourLabelFont">Sets the font used for labeling the contour levels. The default color comes from the lines, if shown. The default family and size come from `layout.font`.</param>
4401
+
/// <param name="ContoursLabelFont">Sets the font used for labeling the contour levels. The default color comes from the lines, if shown. The default family and size come from `layout.font`.</param>
4402
4402
/// <param name="ContoursStart">Sets the starting contour level value. Must be less than `contours.end`</param>
4403
4403
/// <param name="ContoursEnd">Sets the end contour level value. Must be more than `contours.start`</param>
4404
4404
/// <param name="Contours">Sets the styles of the contours (use this for more finegrained control than the other contour-associated arguments).</param>
@@ -4545,15 +4545,14 @@ module Chart2D =
4545
4545
/// <param name="ContoursOperation">Sets the constraint operation. "=" keeps regions equal to `value` "<" and "<=" keep regions less than `value` ">" and ">=" keep regions greater than `value` "[]", "()", "[)", and "(]" keep regions inside `value[0]` to `value[1]` "][", ")(", "](", ")[" keep regions outside `value[0]` to value[1]` Open vs. closed intervals make no difference to constraint display, but all versions are allowed for consistency with filter transforms.</param>
4546
4546
/// <param name="ContoursType">If `levels`, the data is represented as a contour plot with multiple levels displayed. If `constraint`, the data is represented as constraints with the invalid region shaded as specified by the `operation` and `value` parameters.</param>
4547
4547
/// <param name="ShowContoursLabels">Determines whether to label the contour lines with their values.</param>
4548
-
/// <param name="ContourLabelFont">Sets the font used for labeling the contour levels. The default color comes from the lines, if shown. The default family and size come from `layout.font`.</param>
4548
+
/// <param name="ContoursLabelFont">Sets the font used for labeling the contour levels. The default color comes from the lines, if shown. The default family and size come from `layout.font`.</param>
4549
4549
/// <param name="ContoursStart">Sets the starting contour level value. Must be less than `contours.end`</param>
4550
4550
/// <param name="ContoursEnd">Sets the end contour level value. Must be more than `contours.start`</param>
4551
4551
/// <param name="Contours">Sets the styles of the contours (use this for more finegrained control than the other contour-associated arguments).</param>
4552
4552
/// <param name="ColorBar">Sets the styles of the colorbar for this trace.</param>
4553
4553
/// <param name="ColorScale">Sets the colorscale for this trace.</param>
4554
4554
/// <param name="ShowScale">Whether or not to show the colorscale/colorbar</param>
4555
4555
/// <param name="ReverseScale">Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color.</param>
4556
-
/// <param name="Contours">Sets the style of the contours</param>
4557
4556
/// <param name="NContours">Sets the maximum number of contour levels. The actual number of contours will be chosen automatically to be less than or equal to the value of `ncontours`. Has an effect only if `autocontour` is "true" or if `contours.size` is missing.</param>
4558
4557
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
4559
4558
[<Extension>]
@@ -5123,7 +5122,7 @@ module Chart2D =
5123
5122
/// <param name="ContoursOperation">Sets the constraint operation. "=" keeps regions equal to `value` "<" and "<=" keep regions less than `value` ">" and ">=" keep regions greater than `value` "[]", "()", "[)", and "(]" keep regions inside `value[0]` to `value[1]` "][", ")(", "](", ")[" keep regions outside `value[0]` to value[1]` Open vs. closed intervals make no difference to constraint display, but all versions are allowed for consistency with filter transforms.</param>
5124
5123
/// <param name="ContoursType">If `levels`, the data is represented as a contour plot with multiple levels displayed. If `constraint`, the data is represented as constraints with the invalid region shaded as specified by the `operation` and `value` parameters.</param>
5125
5124
/// <param name="ShowContoursLabels">Determines whether to label the contour lines with their values.</param>
5126
-
/// <param name="ContourLabelFont">Sets the font used for labeling the contour levels. The default color comes from the lines, if shown. The default family and size come from `layout.font`.</param>
5125
+
/// <param name="ContoursLabelFont">Sets the font used for labeling the contour levels. The default color comes from the lines, if shown. The default family and size come from `layout.font`.</param>
5127
5126
/// <param name="ContoursStart">Sets the starting contour level value. Must be less than `contours.end`</param>
5128
5127
/// <param name="ContoursEnd">Sets the end contour level value. Must be more than `contours.start`</param>
5129
5128
/// <param name="Contours">Sets the styles of the contours (use this for more finegrained control than the other contour-associated arguments).</param>
@@ -5827,7 +5826,7 @@ module Chart2D =
5827
5826
/// <param name="ContoursOperation">Sets the constraint operation. "=" keeps regions equal to `value` "<" and "<=" keep regions less than `value` ">" and ">=" keep regions greater than `value` "[]", "()", "[)", and "(]" keep regions inside `value[0]` to `value[1]` "][", ")(", "](", ")[" keep regions outside `value[0]` to value[1]` Open vs. closed intervals make no difference to constraint display, but all versions are allowed for consistency with filter transforms.</param>
5828
5827
/// <param name="ContoursType">If `levels`, the data is represented as a contour plot with multiple levels displayed. If `constraint`, the data is represented as constraints with the invalid region shaded as specified by the `operation` and `value` parameters.</param>
5829
5828
/// <param name="ShowContoursLabels">Determines whether to label the contour lines with their values.</param>
5830
-
/// <param name="ContourLabelFont">Sets the font used for labeling the contour levels. The default color comes from the lines, if shown. The default family and size come from `layout.font`.</param>
5829
+
/// <param name="ContoursLabelFont">Sets the font used for labeling the contour levels. The default color comes from the lines, if shown. The default family and size come from `layout.font`.</param>
5831
5830
/// <param name="ContoursStart">Sets the starting contour level value. Must be less than `contours.end`</param>
5832
5831
/// <param name="ContoursEnd">Sets the end contour level value. Must be more than `contours.start`</param>
5833
5832
/// <param name="Contours">Sets the styles of the contours (use this for more finegrained control than the other contour-associated arguments).</param>
Copy file name to clipboardExpand all lines: src/Plotly.NET/CommonAbstractions/ColorBar.fs
+2
Original file line number
Diff line number
Diff line change
@@ -200,9 +200,11 @@ type ColorBar() =
200
200
/// <param name="X">Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.</param>
201
201
/// <param name="XAnchor">'Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center*, or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.</param>
202
202
/// <param name="XPad">Sets the amount of padding (in px) along the x direction.</param>
203
+
/// <param name="XRef">Sets the container `x` refers to. "container" spans the entire `width` of the plot. "paper" refers to the width of the plotting area only.</param>
203
204
/// <param name="Y">Sets the y position of the color bar (in plot fraction).Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.'</param>
204
205
/// <param name="YAnchor">'Sets this color bar\'s vertical position anchor. This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.'</param>
205
206
/// <param name="YPad">Sets the amount of padding (in px) along the y direction.</param>
207
+
/// <param name="YRef">Sets the container `y` refers to. "container" spans the entire `height` of the plot. "paper" refers to the height of the plotting area only.</param>
/// <param name="AdditionalHeadTags">Additional tags that will be included in the document's head </param>
26
-
/// <param name="Description">HTML tags that appear below the chart in HTML docs</param>
30
+
/// <param name="ChartDescription">HTML tags that appear below the chart in HTML docs</param>
27
31
/// <param name="PlotlyJSReference">Sets how plotly is referenced in the head of html docs. When CDN, a script tag that references the plotly.js CDN is included in the output. When Full, a script tag containing the plotly.js source code (~3MB) is included in the output. HTML files generated with this option are fully self-contained and can be used offline</param>
28
32
static memberinit
29
33
(
@@ -49,8 +53,12 @@ type DisplayOptions() =
49
53
/// <summary>
50
54
/// Returns a function sthat applies the given styles to a DisplayOptions object
51
55
/// </summary>
56
+
/// <param name="DocumentTitle">The title metadata for the document</param>
/// <param name="AdditionalHeadTags">Additional tags that will be included in the document's head </param>
53
-
/// <param name="Description">HTML tags that appear below the chart in HTML docs</param>
61
+
/// <param name="ChartDescription">HTML tags that appear below the chart in HTML docs</param>
54
62
/// <param name="PlotlyJSReference">Sets how plotly is referenced in the head of html docs. When CDN, a script tag that references the plotly.js CDN is included in the output. When Full, a script tag containing the plotly.js source code (~3MB) is included in the output. HTML files generated with this option are fully self-contained and can be used offline</param>
0 commit comments