@@ -288,8 +288,8 @@ type Chart =
288288 /// Displays the distribution of data based on the five number summary: minimum, first quartile, median, third quartile, and maximum.
289289 static member BoxPlot (? x ,? y ,? Name ,? Showlegend ,? Color ,? Opacity ,? Whiskerwidth ,? Boxpoints ,? Boxmean ,? Jitter ,? Pointpos ,? Orientation ) =
290290 Trace.initBoxPlot ( TraceStyle.BoxPlot( ?X= x, ?Y = y,
291- ?Whiskerwidth= Whiskerwidth,? Boxpoints= Boxpoints,
292- ?Boxmean= Boxmean,? Jitter= Jitter,? Pointpos= Pointpos,? Orientation= Orientation,? Fillcolor= Color) )
291+ ?Whiskerwidth= Whiskerwidth,? Boxpoints= Boxpoints,
292+ ?Boxmean= Boxmean,? Jitter= Jitter,? Pointpos= Pointpos,? Orientation= Orientation,? Fillcolor= Color) )
293293 |> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
294294 |> GenericChart.ofTraceObject
295295
@@ -300,27 +300,21 @@ type Chart =
300300 Chart.BoxPlot( x, y, ?Name= Name,? Showlegend= Showlegend,? Color= Color,? Opacity= Opacity,? Whiskerwidth= Whiskerwidth,? Boxpoints= Boxpoints,? Boxmean= Boxmean,? Jitter= Jitter,? Pointpos= Pointpos,? Orientation= Orientation)
301301
302302
303- // /// Shows a graphical representation of a 3-dimensional surface by plotting constant z slices, called contours, on a 2-dimensional format.
304- // /// That is, given a value for z, lines are drawn for connecting the (x,y) coordinates where that z value occurs.
305- // static member Heatmap(data:seq<#seq<#IConvertible>>,?ColNames,?RowNames,?Name,?Showlegend,?Opacity,?Colorscale,?Showscale,?zSmooth,?Colorbar) =
306- // let trace =
307- // Heatmap()
308- // |> Options.IMapZ(Z=data,?X=ColNames, ?Y=RowNames)
309- // |> Options.IColormap(?Colorscale=Colorscale,?Showscale=Showscale,?zSmooth=zSmooth,?Colorbar=Colorbar)
310- // |> Options.ITraceInfo(?Name=Name,?Showlegend=Showlegend,?Opacity=Opacity)
311- // //|> Options.ITextLabel(?Text=Labels,?Textposition=TextPosition,?Textfont=TextFont)
312- // GenericChart.Chart (trace,None)
303+ /// Shows a graphical representation of a 3-dimensional surface by plotting constant z slices, called contours, on a 2-dimensional format.
304+ /// That is, given a value for z, lines are drawn for connecting the (x,y) coordinates where that z value occurs.
305+ static member Heatmap ( data : seq < #seq < #IConvertible >>,? ColNames ,? RowNames ,? Name ,? Showlegend ,? Opacity ,? Colorscale ,? Showscale ,? Xgap ,? Ygap ,? zSmooth ,? Colorbar ) =
306+ Trace.initHeatmap ( TraceStyle.Heatmap( Z= data,? X= ColNames, ?Y= RowNames,
307+ ?Xgap= Xgap,? Ygap= Ygap,? Colorscale= Colorscale,? Showscale= Showscale,? zSmooth= zSmooth,? Colorbar= Colorbar) )
308+ |> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
309+ |> GenericChart.ofTraceObject
313310
314311
315- // /// Shows a graphical representation of data where the individual values contained in a matrix are represented as colors.
316- // static member Contour(data:seq<#seq<#IConvertible>>,?X,?Y,?Name,?Showlegend,?Opacity,?Colorscale,?Showscale,?zSmooth,?Colorbar) =
317- // let trace =
318- // Contour()
319- // |> Options.IMapZ(Z=data,?X=X, ?Y=Y)
320- // |> Options.IColormap(?Colorscale=Colorscale,?Showscale=Showscale,?zSmooth=zSmooth,?Colorbar=Colorbar)
321- // |> Options.ITraceInfo(?Name=Name,?Showlegend=Showlegend,?Opacity=Opacity)
322- // //|> Options.ITextLabel(?Text=Labels,?Textposition=TextPosition,?Textfont=TextFont)
323- // GenericChart.Chart (trace,None)
312+ /// Shows a graphical representation of data where the individual values contained in a matrix are represented as colors.
313+ static member Contour ( data : seq < #seq < #IConvertible >>,? X ,? Y ,? Name ,? Showlegend ,? Opacity ,? Colorscale ,? Showscale ,? zSmooth ,? Colorbar ) =
314+ Trace.initContour ( TraceStyle.Contour( Z= data,? X= X, ?Y= Y,
315+ ?Colorscale= Colorscale,? Showscale= Showscale,? zSmooth= zSmooth,? Colorbar= Colorbar) )
316+ |> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
317+ |> GenericChart.ofTraceObject
324318
325319
326320 /// Shows how proportions of data, shown as pie-shaped pieces, contribute to the data.
0 commit comments