@@ -35,7 +35,7 @@ public static void SaveHtml(
35
35
string path ,
36
36
Optional < bool > OpenInBrowser = default
37
37
) =>
38
- Plotly . NET . Chart . SaveHtml (
38
+ Plotly . NET . Chart . saveHtml (
39
39
path : path ,
40
40
OpenInBrowser : OpenInBrowser . ToOption ( )
41
41
) . Invoke ( gChart ) ;
@@ -44,7 +44,7 @@ public static void SaveHtml(
44
44
/// Saves the given chart as a temporary html file and opens it in the browser.
45
45
/// </summary>
46
46
/// <param name="gChart">The chart to show in the browser</param>
47
- public static void Show ( this GenericChart gChart ) => Plotly . NET . Chart . Show ( gChart ) ;
47
+ public static void Show ( this GenericChart gChart ) => Plotly . NET . Chart . show ( gChart ) ;
48
48
49
49
/// <summary>
50
50
/// Sets trace information on the given chart.
@@ -65,7 +65,7 @@ public static GenericChart WithTraceInfo(
65
65
Optional < string > LegendGroup = default ,
66
66
Optional < Title > LegendGroupTitle = default
67
67
) =>
68
- Plotly . NET . Chart . WithTraceInfo (
68
+ Plotly . NET . Chart . withTraceInfo (
69
69
Name : Name . ToOption ( ) ,
70
70
Visible : Visible . ToOption ( ) ,
71
71
ShowLegend : ShowLegend . ToOption ( ) ,
@@ -80,7 +80,7 @@ public static GenericChart WithSize(
80
80
Optional < int > Width = default ,
81
81
Optional < int > Height = default
82
82
) =>
83
- Plotly . NET . Chart . WithSize ( Width : Width . ToOption ( ) , Height : Height . ToOption ( ) ) . Invoke ( gChart ) ;
83
+ Plotly . NET . Chart . withSize ( Width : Width . ToOption ( ) , Height : Height . ToOption ( ) ) . Invoke ( gChart ) ;
84
84
85
85
/// <summary>
86
86
/// Sets the given x axis styles on the input chart's layout.
@@ -155,7 +155,7 @@ public static GenericChart WithXAxisStyle<MinType, MaxType, CategoryArrayType>(
155
155
where MaxType : IConvertible
156
156
where CategoryArrayType : IConvertible
157
157
=>
158
- Plotly . NET . Chart . WithXAxisStyle < MinType , MaxType , CategoryArrayType > (
158
+ Plotly . NET . Chart . withXAxisStyle < MinType , MaxType , CategoryArrayType > (
159
159
TitleText : TitleText . ToOption ( ) ,
160
160
TitleFont : TitleFont . ToOption ( ) ,
161
161
TitleStandoff : TitleStandoff . ToOption ( ) ,
@@ -266,7 +266,7 @@ public static GenericChart WithYAxisStyle<MinType, MaxType, CategoryArrayType>(
266
266
where MaxType : IConvertible
267
267
where CategoryArrayType : IConvertible
268
268
=>
269
- Plotly . NET . Chart . WithYAxisStyle < MinType , MaxType , CategoryArrayType > (
269
+ Plotly . NET . Chart . withYAxisStyle < MinType , MaxType , CategoryArrayType > (
270
270
TitleText : TitleText . ToOption ( ) ,
271
271
TitleFont : TitleFont . ToOption ( ) ,
272
272
TitleStandoff : TitleStandoff . ToOption ( ) ,
@@ -316,7 +316,7 @@ public static GenericChart WithMapbox(
316
316
Optional < int > Id = default
317
317
)
318
318
=>
319
- Plotly . NET . Chart . WithMapbox (
319
+ Plotly . NET . Chart . withMapbox (
320
320
mapbox : mapbox ,
321
321
Id : Id . ToOption ( )
322
322
) . Invoke ( gChart ) ;
@@ -374,7 +374,7 @@ public static GenericChart WithXAxisRangeSlider(
374
374
Optional < StyleParam . SubPlotId > Id = default
375
375
)
376
376
=>
377
- Plotly . NET . Chart . WithXAxisRangeSlider (
377
+ Plotly . NET . Chart . withXAxisRangeSlider (
378
378
rangeSlider : rangeSlider ,
379
379
Id : Id . ToOption ( )
380
380
) . Invoke ( gChart ) ;
@@ -393,7 +393,7 @@ public static GenericChart WithLegend(
393
393
Optional < int > Id
394
394
)
395
395
=>
396
- Plotly . NET . Chart . WithLegend (
396
+ Plotly . NET . Chart . withLegend (
397
397
legend : legend ,
398
398
Id : Id . ToOption ( )
399
399
) . Invoke ( gChart ) ;
@@ -460,7 +460,7 @@ public static GenericChart WithLegendStyle(
460
460
Optional < int > Id = default
461
461
)
462
462
=>
463
- Plotly . NET . Chart . WithLegendStyle (
463
+ Plotly . NET . Chart . withLegendStyle (
464
464
BGColor : BGColor . ToOption ( ) ,
465
465
BorderColor : BorderColor . ToOption ( ) ,
466
466
BorderWidth : BorderWidth . ToOption ( ) ,
0 commit comments