You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chart.Column(keys,values,Labels=labels,Opacity=0.3,Marker=Options.Marker(Color="rgba(222,45,38,0.8)",Size=1))// Changing the thickness of the bar is not possible at the moment
Copy file name to clipboardExpand all lines: src/FSharp.Plotly/AxisObjects.fs
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1134,6 +1134,7 @@ module AxisObjects =
1134
1134
let mutable_opacity:float option = None
1135
1135
let mutable_line:Line option = None
1136
1136
let mutable_fillcolor:string option = None
1137
+
let mutable_layer:string option = None
1137
1138
//let mutable _role: string option = Some "object"
1138
1139
1139
1140
/// Specifies the shape type to be drawn. If *line*, a line is drawn from (`x0`,`y0`) to (`x1`,`y1`) If *circle*, a circle is drawn from ((`x0`+`x1`)/2, (`y0`+`y1`)/2)) with radius (|(`x0`+`x1`)/2 - `x0`|, |(`y0`+`y1`)/2 -`y0`)|) If *rect*, a rectangle is drawn linking (`x0`,`y0`), (`x1`,`y0`), (`x1`,`y1`), (`x0`,`y1`), (`x0`,`y0`) If *path*, draw a custom SVG path using `path`.
// /// Computes the bi-dimensional histogram of two data samples and auto-determines the bin size.
339
339
// static member Histogram2d(x,y,?Name,?HistNorm,?HistFunc,?Colorscale,?Showscale,?zSmooth,?Colorbar,?zAuto,?zMin,?zMax,?nBinsx,?nBinsy,?Xbins,?Ybins) =
Copy file name to clipboardExpand all lines: src/FSharp.Plotly/StyleOption.fs
+29-1Lines changed: 29 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -506,6 +506,34 @@ module StyleOption =
506
506
507
507
static memberconvert=function
508
508
| MinMax (min,max)-> box [|min;max|]
509
-
509
+
510
+
511
+
512
+
513
+
/// Specifies the shape type to be drawn. If "line", a line is drawn from (`x0`,`y0`) to (`x1`,`y1`) If "circle", a circle is drawn from ((`x0`+`x1`)/2, (`y0`+`y1`)/2))
514
+
/// with radius (|(`x0`+`x1`)/2 - `x0`|, |(`y0`+`y1`)/2 -`y0`)|) If "rect", a rectangle is drawn linking (`x0`,`y0`), (`x1`,`y0`), (`x1`,`y1`), (`x0`,`y1`), (`x0`,`y0`)
515
+
/// If "path", draw a custom SVG path using `path`.
516
+
typeShapeType=
517
+
| Circle | Rectangle | SvgPath | Line
518
+
519
+
static membertoString=function
520
+
| Circle ->"circle"
521
+
| Rectangle ->"rect"
522
+
| SvgPath ->"path"
523
+
| Line ->"line"
524
+
525
+
526
+
static memberconvert= ShapeType.toString >> box
527
+
528
+
529
+
/// Specifies whether shapes are drawn below or above traces. Default is Above
0 commit comments