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.CSharp/ChartAPI/ChartSmith.cs
+82Lines changed: 82 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -251,5 +251,87 @@ public static GenericChart.GenericChart LineSmith<RealType, ImagType, TextType>(
251
251
FillColor:FillColor.ToOption(),
252
252
UseDefaults:UseDefaults.ToOption()
253
253
);
254
+
/// <summary>
255
+
/// Creates a Bubble plot on a smith coordinate system. 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.
256
+
///
257
+
/// In general, BubbleSmith charts plot complex numbers on a transformed two-dimensional Cartesian complex plane as points of varying sizes. Complex numbers with positive real parts map inside the circle. Those with negative real parts map outside the circle.
258
+
/// </summary>
259
+
/// <param name="real">Sets the real component of the data, in units of normalized impedance such that real=1, imag=0 is the center of the chart.</param>
260
+
/// <param name="imag">Sets the imaginary component of the data, in units of normalized impedance such that real=1, imag=0 is the center of the chart.</param>
261
+
/// <param name="sizes">Sets the size of the points</param>
262
+
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
263
+
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
264
+
/// <param name="Opacity">Sets the opactity of the trace</param>
265
+
/// <param name="MultiOpacity">Sets the opactity of individual datum markers</param>
266
+
/// <param name="Text">Sets a text associated with each datum</param>
267
+
/// <param name="MultiText">Sets individual text for each datum</param>
268
+
/// <param name="TextPosition">Sets the position of text associated with each datum</param>
269
+
/// <param name="MultiTextPosition">Sets the position of text associated with individual datum</param>
270
+
/// <param name="MarkerColor">Sets the color of the marker</param>
271
+
/// <param name="MarkerColorScale">Sets the colorscale of the marker</param>
272
+
/// <param name="MarkerOutline">Sets the outline of the marker</param>
273
+
/// <param name="MarkerSymbol">Sets the marker symbol for each datum</param>
274
+
/// <param name="MultiMarkerSymbol">Sets the marker symbol for each individual datum</param>
275
+
/// <param name="Marker">Sets the marker (use this for more finegrained control than the other marker-associated arguments)</param>
276
+
/// <param name="LineColor">Sets the color of the line</param>
277
+
/// <param name="LineColorScale">Sets the colorscale of the line</param>
278
+
/// <param name="LineWidth">Sets the width of the line</param>
279
+
/// <param name="LineDash">sets the drawing style of the line</param>
280
+
/// <param name="Line">Sets the line (use this for more finegrained control than the other line-associated arguments)</param>
281
+
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
0 commit comments