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 point plot on a ternary coordinate system
109
+
///
110
+
/// In general, PointTernary creates a barycentric point plot on three variables which sum to a constant, graphically depicting the ratios of the three variables as positions in an equilateral triangle.
111
+
/// </summary>
112
+
/// <param name="A">Sets the quantity of component `a` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary<i>.sum`.</param>
113
+
/// <param name="B">Sets the quantity of component `b` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary<i>.sum`.</param>
114
+
/// <param name="C">Sets the quantity of component `c` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary<i>.sum`.</param>
115
+
/// <param name="Sum">The number each triplet should sum to, if only two of `a`, `b`, and `c` are provided. This overrides `ternary<i>.sum` to normalize this specific trace, but does not affect the values displayed on the axes. 0 (or missing) means to use `ternary<i>.sum`</param>
116
+
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
117
+
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
118
+
/// <param name="Opacity">Sets the opactity of the trace</param>
119
+
/// <param name="MultiOpacity">Sets the opactity of individual datum markers</param>
120
+
/// <param name="Text">Sets a text associated with each datum</param>
121
+
/// <param name="MultiText">Sets individual text for each datum</param>
122
+
/// <param name="TextPosition">Sets the position of text associated with each datum</param>
123
+
/// <param name="MultiTextPosition">Sets the position of text associated with individual datum</param>
124
+
/// <param name="MarkerColor">Sets the color of the marker</param>
125
+
/// <param name="MarkerColorScale">Sets the colorscale of the marker</param>
126
+
/// <param name="MarkerOutline">Sets the outline of the marker</param>
127
+
/// <param name="MarkerSymbol">Sets the marker symbol for each datum</param>
128
+
/// <param name="MultiMarkerSymbol">Sets the marker symbol for each individual datum</param>
129
+
/// <param name="Marker">Sets the marker (use this for more finegrained control than the other marker-associated arguments)</param>
130
+
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
/// Creates a line plot on a ternary coordinate system
182
+
///
183
+
/// In general, LineTernary creates a barycentric line plot on three variables which sum to a constant, graphically depicting the ratios of the three variables as positions in an equilateral triangle.
184
+
/// </summary>
185
+
/// <param name="A">Sets the quantity of component `a` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary<i>.sum`.</param>
186
+
/// <param name="B">Sets the quantity of component `b` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary<i>.sum`.</param>
187
+
/// <param name="C">Sets the quantity of component `c` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary<i>.sum`.</param>
188
+
/// <param name="Sum">The number each triplet should sum to, if only two of `a`, `b`, and `c` are provided. This overrides `ternary<i>.sum` to normalize this specific trace, but does not affect the values displayed on the axes. 0 (or missing) means to use `ternary<i>.sum`</param>
189
+
/// <param name="ShowMarkers">Wether to show markers for the individual data points</param>
190
+
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
191
+
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
192
+
/// <param name="Opacity">Sets the opactity of the trace</param>
193
+
/// <param name="MultiOpacity">Sets the opactity of individual datum markers</param>
194
+
/// <param name="Text">Sets a text associated with each datum</param>
195
+
/// <param name="MultiText">Sets individual text for each datum</param>
196
+
/// <param name="TextPosition">Sets the position of text associated with each datum</param>
197
+
/// <param name="MultiTextPosition">Sets the position of text associated with individual datum</param>
198
+
/// <param name="MarkerColor">Sets the color of the marker</param>
199
+
/// <param name="MarkerColorScale">Sets the colorscale of the marker</param>
200
+
/// <param name="MarkerOutline">Sets the outline of the marker</param>
201
+
/// <param name="MarkerSymbol">Sets the marker symbol for each datum</param>
202
+
/// <param name="MultiMarkerSymbol">Sets the marker symbol for each individual datum</param>
203
+
/// <param name="Marker">Sets the marker (use this for more finegrained control than the other marker-associated arguments)</param>
204
+
/// <param name="LineColor">Sets the color of the line</param>
205
+
/// <param name="LineColorScale">Sets the colorscale of the line</param>
206
+
/// <param name="LineWidth">Sets the width of the line</param>
207
+
/// <param name="LineDash">sets the drawing style of the line</param>
208
+
/// <param name="Line">Sets the line (use this for more finegrained control than the other line-associated arguments)</param>
209
+
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
/// Creates a bubble plot on a ternary coordinate system
273
+
///
274
+
/// A bubble chart is a variation of the Point chart, where the data points get an additional scale by being rendered as bubbles of different sizes.
275
+
///
276
+
/// In general, BubbleTernary creates a barycentric point plot on three variables which sum to a constant, graphically depicting the ratios of the three variables as positions in an equilateral triangle.
277
+
/// A 4th data dimension is used to determine the size of the points.
278
+
/// </summary>
279
+
/// <param name="sizes">Sets the bubble size of the plotted data</param>
280
+
/// <param name="A">Sets the quantity of component `a` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary<i>.sum`.</param>
281
+
/// <param name="B">Sets the quantity of component `b` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary<i>.sum`.</param>
282
+
/// <param name="C">Sets the quantity of component `c` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary<i>.sum`.</param>
283
+
/// <param name="Sum">The number each triplet should sum to, if only two of `a`, `b`, and `c` are provided. This overrides `ternary<i>.sum` to normalize this specific trace, but does not affect the values displayed on the axes. 0 (or missing) means to use `ternary<i>.sum`</param>
284
+
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
285
+
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
286
+
/// <param name="Opacity">Sets the opactity of the trace</param>
287
+
/// <param name="MultiOpacity">Sets the opactity of individual datum markers</param>
288
+
/// <param name="Text">Sets a text associated with each datum</param>
289
+
/// <param name="MultiText">Sets individual text for each datum</param>
290
+
/// <param name="TextPosition">Sets the position of text associated with each datum</param>
291
+
/// <param name="MultiTextPosition">Sets the position of text associated with individual datum</param>
292
+
/// <param name="MarkerColor">Sets the color of the marker</param>
293
+
/// <param name="MarkerColorScale">Sets the colorscale of the marker</param>
294
+
/// <param name="MarkerOutline">Sets the outline of the marker</param>
295
+
/// <param name="MarkerSymbol">Sets the marker symbol for each datum</param>
296
+
/// <param name="MultiMarkerSymbol">Sets the marker symbol for each individual datum</param>
297
+
/// <param name="Marker">Sets the marker (use this for more finegrained control than the other marker-associated arguments)</param>
298
+
/// <param name="LineColor">Sets the color of the line</param>
299
+
/// <param name="LineColorScale">Sets the colorscale of the line</param>
300
+
/// <param name="LineWidth">Sets the width of the line</param>
301
+
/// <param name="LineDash">sets the drawing style of the line</param>
302
+
/// <param name="Line">Sets the line (use this for more finegrained control than the other line-associated arguments)</param>
303
+
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
0 commit comments