@@ -378,20 +378,21 @@ type Chart =
378378 |> GenericChart.ofTraceObject
379379
380380 /// Computes a histogram with auto-determined the bin size.
381- static member Histogram ( data ,? Orientation ,? Name ,? Showlegend ,? Marker ,? HistNorm ,? HistFunc ,? nBinsx ,? nBinsy ,? Xbins ,? Ybins ,? xError ,? yError ) =
381+ static member Histogram ( data ,? Orientation ,? Name ,? Showlegend ,? Opacity ,? Color ,? HistNorm ,? HistFunc ,? nBinsx ,? nBinsy ,? Xbins ,? Ybins ,? xError ,? yError ) =
382382 Trace.initHistogram (
383383 TraceStyle.Histogram ( X= data,? Orientation= Orientation,? HistNorm= HistNorm,? HistFunc= HistFunc,
384384 ?nBinsx= nBinsx,? nBinsy= nBinsy,? xBins= Xbins,? yBins= Ybins)
385385 )
386- |> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend) //,?Opacity=Opacity)
386+ |> TraceStyle.Marker( ?Color= Color)
387+ |> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
387388 |> GenericChart.ofTraceObject
388389
389390 /// Computes the bi-dimensional histogram of two data samples and auto-determines the bin size.
390- static member Histogram2d ( x , y ,? Z ,? Name ,? Showlegend ,? Colorscale ,? Showscale ,? zSmooth ,? Colorbar ,? zAuto ,? zMin ,? zMax ,? nBinsx ,? nBinsy ,? Xbins ,? Ybins ,? HistNorm ,? HistFunc ) =
391+ static member Histogram2d ( x , y ,? Z ,? Name ,? Showlegend ,? Opacity ,? Colorscale ,? Showscale ,? zSmooth ,? Colorbar ,? zAuto ,? zMin ,? zMax ,? nBinsx ,? nBinsy ,? Xbins ,? Ybins ,? HistNorm ,? HistFunc ) =
391392 Trace.initHistogram2d (
392393 TraceStyle.Histogram2d ( X= x, Y= y,? Z= Z,
393394 ?Colorscale= Colorscale,? Showscale= Showscale,? zSmooth= zSmooth,? Colorbar= Colorbar) )
394- |> TraceStyle.TraceInfo( ?Name= Name) // ,?Showlegend=Showlegend,?Opacity=Opacity)
395+ |> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
395396 |> GenericChart.ofTraceObject
396397
397398
0 commit comments