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/ChartAPI/Chart2D.fs
+111
Original file line number
Diff line number
Diff line change
@@ -5018,3 +5018,114 @@ module Chart2D =
5018
5018
?ShowUpperHalf = ShowUpperHalf,
5019
5019
?UseDefaults = UseDefaults
5020
5020
)
5021
+
5022
+
/// <summary>
5023
+
/// Creates a point density plot - a combination of a Scatter plot and Histogram2DContour.
5024
+
///
5025
+
/// Additionally to plotting the (x,y) data as points on a 2D plane, a density contour plot is computed by grouping a set of points specified by their x and y coordinates into bins, and applying a count aggregation function to compute the value to be used to compute contours.
5026
+
/// The sample data from which statistics are computed is set in `x` and `y` (where `x` and `y` represent marginal distributions, binning is set in `xbins` and `ybins` in this case). The resulting distribution is visualized as a contour plot.
5027
+
///
5028
+
/// </summary>
5029
+
/// <param name="x">Sets the x coordinates of the plotted data as well as the sample data to be binned on the x axis.</param>
5030
+
/// <param name="y">Sets the y coordinates of the plotted data as well as the sample data to be binned on the y axis.</param>
5031
+
/// <param name="PointOpacity">Sets the opacity of the point trace.</param>
5032
+
/// <param name="PointMarkerColor">Sets the marker color of the point trace.</param>
5033
+
/// <param name="PointMarkerSymbol">Sets the marker symbol of the point trace.</param>
5034
+
/// <param name="PointMarkerSize">Sets the marker size of the point trace.</param>
5035
+
/// <param name="ContourLineColor">Sets the color of the contour lines of the histogram2dcontour trace.</param>
5036
+
/// <param name="ContourLineSmoothing">Sets the smoothing of the contour lines of the histogram2dcontour trace.</param>
5037
+
/// <param name="ContourLineWidth">Sets the width of the contour lines of the histogram2dcontour trace.</param>
5038
+
/// <param name="ShowContourLines">Wether or not to show contour lines</param>
5039
+
/// <param name="ShowContourLabels">Wether or not to show contour labels</param>
5040
+
/// <param name="ContourColoring">Determines the coloring method showing the contour values. If "fill", coloring is done evenly between each contour level If "heatmap", a heatmap gradient coloring is applied between each contour level. If "lines", coloring is done on the contour lines. If "none", no coloring is applied on this trace.</param>
5041
+
/// <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>
5042
+
/// <param name="HistNorm">Specifies the type of normalization used for this histogram trace. If "", the span of each bar corresponds to the number of occurrences (i.e. the number of data points lying inside the bins). If "percent" / "probability", the span of each bar corresponds to the percentage / fraction of occurrences with respect to the total number of sample points (here, the sum of all bin HEIGHTS equals 100% / 1). If "density", the span of each bar corresponds to the number of occurrences in a bin divided by the size of the bin interval (here, the sum of all bin AREAS equals the total number of sample points). If "probability density", the area of each bar corresponds to the probability that an event will fall into the corresponding bin (here, the sum of all bin AREAS equals 1).</param>
5043
+
/// <param name="ContourOpacity">Sets the opacity of the histogram2dcontour trace.</param>
5044
+
/// <param name="ColorBar">Sets the color bar.</param>
5045
+
/// <param name="ColorScale">Sets the colorscale of the histogram2dcontour trace.</param>
5046
+
/// <param name="ShowScale">wether or not to show the colorbar</param>
5047
+
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
0 commit comments