Skip to content

Commit 7761784

Browse files
committed
Fix scatter polar default values
1 parent 950dcdc commit 7761784

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

src/Plotly.NET.CSharp/ChartAPI/ChartPolar.cs

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -46,27 +46,27 @@ public static GenericChart.GenericChart ScatterPolar<RType, ThetaType, TextType>
4646
IEnumerable<RType> r,
4747
IEnumerable<ThetaType> theta,
4848
StyleParam.Mode mode,
49-
string? Name,
50-
bool? ShowLegend,
51-
double? Opacity,
52-
IEnumerable<double>? MultiOpacity,
53-
TextType? Text,
54-
IEnumerable<TextType>? MultiText,
55-
StyleParam.TextPosition? TextPosition,
56-
IEnumerable<StyleParam.TextPosition>? MultiTextPosition,
57-
Color? MarkerColor,
58-
StyleParam.Colorscale? MarkerColorScale,
59-
Line? MarkerOutline,
60-
StyleParam.MarkerSymbol3D? MarkerSymbol,
61-
IEnumerable<StyleParam.MarkerSymbol3D>? MultiMarkerSymbol,
62-
Marker? Marker,
63-
Color? LineColor,
64-
StyleParam.Colorscale? LineColorScale,
65-
double? LineWidth,
66-
StyleParam.DrawingStyle? LineDash,
67-
Line? Line,
68-
bool? UseWebGL,
69-
bool? UseDefaults
49+
string? Name = null,
50+
bool? ShowLegend = null,
51+
double? Opacity = null,
52+
IEnumerable<double>? MultiOpacity = null,
53+
TextType? Text = null,
54+
IEnumerable<TextType>? MultiText = null,
55+
StyleParam.TextPosition? TextPosition = null,
56+
IEnumerable<StyleParam.TextPosition>? MultiTextPosition = null,
57+
Color? MarkerColor = null,
58+
StyleParam.Colorscale? MarkerColorScale = null,
59+
Line? MarkerOutline = null,
60+
StyleParam.MarkerSymbol3D? MarkerSymbol = null,
61+
IEnumerable<StyleParam.MarkerSymbol3D>? MultiMarkerSymbol = null,
62+
Marker? Marker = null,
63+
Color? LineColor = null,
64+
StyleParam.Colorscale? LineColorScale = null,
65+
double? LineWidth = null,
66+
StyleParam.DrawingStyle? LineDash = null,
67+
Line? Line = null,
68+
bool? UseWebGL = null,
69+
bool? UseDefaults = null
7070
)
7171
where RType : IConvertible
7272
where ThetaType : IConvertible

0 commit comments

Comments
 (0)