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 contour chart that lies on a specified carpet.
96
+
///
97
+
/// Plots contours on either the first carpet axis or the carpet axis with a matching `carpet` attribute. Data `z` is interpreted as matching that of the corresponding carpet axis.
98
+
/// </summary>
99
+
/// <param name="carpetAnchorId">The identifier of the carpet that this trace will lie on.</param>
100
+
/// <param name="z">Sets the z data.</param>
101
+
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
102
+
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
103
+
/// <param name="Opacity">Sets the opactity of the trace</param>
104
+
/// <param name="A">Sets the a coordinates.</param>
105
+
/// <param name="B">Sets the b coordinates.</param>
106
+
/// <param name="Text">Sets a text associated with each datum</param>
107
+
/// <param name="MultiText">Sets individual text for each datum</param>
108
+
/// <param name="ColorBar">Sets the colorbar of this trace.</param>
109
+
/// <param name="ColorScale">Sets the colorscale of this trace.</param>
110
+
/// <param name="ShowScale">Determines whether or not a colorbar is displayed for this trace.</param>
111
+
/// <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>
112
+
/// <param name="Transpose">Transposes the z data.</param>
113
+
/// <param name="ContourLineDash">Sets the contour line dash style</param>
114
+
/// <param name="ContourLineColor">Sets the contour line color</param>
115
+
/// <param name="ContourLineSmoothing">Sets the amount of smoothing for the contour lines, where "0" corresponds to no smoothing.</param>
116
+
/// <param name="ContourLine">Sets the contour lines (use this for more finegrained control than the other contourline-associated arguments).</param>
117
+
/// <param name="ContoursColoring">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>
118
+
/// <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>
119
+
/// <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>
120
+
/// <param name="ShowContourLabels">Determines whether to label the contour lines with their values.</param>
121
+
/// <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>
122
+
/// <param name="Contours">Sets the styles of the contours (use this for more finegrained control than the other contour-associated arguments).</param>
123
+
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
0 commit comments