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
#405: Refactor GenericChart module to a type with static members.
- add XML docs for all functions
- move HTML methods to separate source file
- `ofTraceObjects` now returns a singleton chart if the input trace collection contains only one trace
- This commit contains breaking changes.
/// Creates a subplot grid with the given dimensions (nRows x nCols) for the input charts.
@@ -33,8 +33,8 @@ public static partial class Chart
33
33
/// <param name ="Domain">Sets the domains of this grid subplot (in plot fraction). The first and last cells end exactly at the domain edges, with no grout around the edges.</param>
34
34
/// <param name ="XSide">Sets where the x axis labels and titles go. "bottom" means the very bottom of the grid. "bottom plot" is the lowest plot that each x axis is used in. "top" and "top plot" are similar.</param>
35
35
/// <param name ="YSide">Sets where the y axis labels and titles go. "left" means the very left edge of the grid. "left plot" is the leftmost plot that each y axis is used in. "right" and "right plot" are similar.</param>
/// <param name="FlatShading">Determines whether or not normal smoothing is applied to the meshes, creating meshes with an angular, low-poly look via flat reflections.</param>
430
430
/// <param name="TriangulationAlgorithm">Determines how the mesh surface triangles are derived from the set of vertices (points) represented by the `x`, `y` and `z` arrays, if the `i`, `j`, `k` arrays are not supplied.</param>
431
431
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
/// <param name="SizeMode">Determines whether `sizeref` is set as a "scaled" (i.e unitless) scalar (normalized by the max u/v/w norm in the vector field) or as "absolute" value (in the same units as the vector field).</param>
509
509
/// <param name="ConeAnchor">Sets the cones' anchor with respect to their x/y/z positions. Note that "cm" denote the cone's center of mass which corresponds to 1/4 from the tail to tip.</param>
510
510
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
@@ -659,7 +659,7 @@ public static GenericChart.GenericChart StreamTube<XType, YType, ZType, UType, V
659
659
/// <param name="Surface">Sets the surface.</param>
660
660
/// <param name="OpacityScale">Sets the opacityscale. The opacityscale must be an array containing arrays mapping a normalized value to an opacity value. At minimum, a mapping for the lowest (0) and highest (1) values are required. For example, `[[0, 1], [0.5, 0.2], [1, 1]]` means that higher/lower values would have higher opacity values and those in the middle would be more transparent Alternatively, `opacityscale` may be a palette name string of the following list: 'min', 'max', 'extremes' and 'uniform'. The default is 'uniform'.</param>
661
661
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
Copy file name to clipboardExpand all lines: src/Plotly.NET.CSharp/ChartAPI/ChartCarpet.cs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ public static partial class Chart
45
45
/// <param name="Color">Sets default for all colors associated with this axis all at once: line, font, tick, and grid colors. Grid color is lightened by blending this with the plot background Individual pieces can override this.</param>
46
46
/// <param name="CheaterSlope">The shift applied to each successive row of data in creating a cheater plot. Only used if `x` is been omitted.</param>
47
47
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
@@ -551,7 +551,7 @@ public static GenericChart.GenericChart BubbleCarpet<AType, BType, TextType>(
551
551
/// <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>
552
552
/// <param name="Contours">Sets the styles of the contours (use this for more finegrained control than the other contour-associated arguments).</param>
553
553
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
0 commit comments