@@ -59,7 +59,7 @@ type Chart =
5959 >> StyleParam.ModeUtils.showMarker ( isShowMarker)
6060
6161 Trace.initScatter (
62- TraceStyle.Scatter( X = x, Y = y, Mode= changeMode StyleParam.Markers ) )
62+ TraceStyle.Scatter( X = x, Y = y, Mode= changeMode StyleParam.Lines ) )
6363 |> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
6464 |> TraceStyle.Marker( ?Color= Color,? Symbol= MarkerSymbol)
6565 |> TraceStyle.TextLabel( ?Text= Labels,? Textposition= TextPosition,? Textfont= TextFont)
@@ -215,7 +215,7 @@ type Chart =
215215 let marker =
216216 match Marker with
217217 | Some marker -> marker |> FSharp.Plotly.Marker.style( ?Color= Color)
218- | None -> FSharp.Plotly.Marker.init ( FSharp.Plotly.Marker.style ( ?Color= Color) )
218+ | None -> FSharp.Plotly.Marker.init ( ?Color= Color)
219219
220220 Trace.initBar ( TraceStyle.Bar( X = keys, Y = values, Marker= marker))
221221 |> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
@@ -234,7 +234,7 @@ type Chart =
234234 let marker =
235235 match Marker with
236236 | Some marker -> marker |> FSharp.Plotly.Marker.style( ?Color= Color)
237- | None -> FSharp.Plotly.Marker.init ( FSharp.Plotly.Marker.style ( ?Color= Color) )
237+ | None -> FSharp.Plotly.Marker.init ( ?Color= Color)
238238
239239 Trace.initBar ( TraceStyle.Bar( X = keys, Y = values, Marker= marker))
240240 |> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
@@ -254,7 +254,7 @@ type Chart =
254254 let marker =
255255 match Marker with
256256 | Some marker -> marker |> FSharp.Plotly.Marker.style( ?Color= Color)
257- | None -> FSharp.Plotly.Marker.init ( FSharp.Plotly.Marker.style ( ?Color= Color) )
257+ | None -> FSharp.Plotly.Marker.init ( ?Color= Color)
258258 Trace.initBar ( TraceStyle.Bar( X = keys, Y = values, Marker= marker, Orientation = StyleParam.Orientation.Horizontal))
259259 |> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
260260 |> TraceStyle.TextLabel( ?Text= Labels,? Textposition= TextPosition,? Textfont= TextFont)
@@ -272,7 +272,7 @@ type Chart =
272272 let marker =
273273 match Marker with
274274 | Some marker -> marker |> FSharp.Plotly.Marker.style( ?Color= Color)
275- | None -> FSharp.Plotly.Marker.init ( FSharp.Plotly.Marker.style ( ?Color= Color) )
275+ | None -> FSharp.Plotly.Marker.init ( ?Color= Color)
276276 Trace.initBar ( TraceStyle.Bar( X = values, Y = keys, Marker= marker, Orientation = StyleParam.Orientation.Horizontal))
277277 |> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
278278 |> TraceStyle.TextLabel( ?Text= Labels,? Textposition= TextPosition,? Textfont= TextFont)
@@ -401,7 +401,7 @@ type Chart =
401401
402402 /// Uses points, line or both depending on the mode to represent 3d-data points
403403 static member Mesh3d ( x , y , z , mode , ? Name ,? Showlegend ,? MarkerSymbol ,? Color ,? Opacity ,? Labels ,? TextPosition ,? TextFont ,? Dash ,? Width ) =
404- Trace3d.initMesh3d ( Trace3dStyle.Mesh3d( X = x, Y = y, Z= z,? Color = Color ) )
404+ Trace3d.initMesh3d ( Trace3dStyle.Mesh3d( X = x, Y = y, Z= z) )
405405 |> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
406406 |> TraceStyle.TextLabel( ?Text= Labels,? Textposition= TextPosition,? Textfont= TextFont)
407407 |> GenericChart.ofTraceObject
0 commit comments