Skip to content

Commit d7bb3e7

Browse files
committed
minor docu fixes
1 parent 77a4880 commit d7bb3e7

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

docs/04_1_box-plots.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ By swapping x and y plus using `StyleParam.Orientation.Horizontal` we can flip t
6868
*)
6969
let box2 =
7070
Chart.BoxPlot(
71-
Y = y,
72-
X = x,
71+
X = y,
72+
Y = x,
7373
Jitter=0.1,
7474
BoxPoints=StyleParam.BoxPoints.All,
7575
Orientation=StyleParam.Orientation.Horizontal

docs/09_5_sunburst.fsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,7 @@ let sunburstStyled =
8282
SectionColorScale = StyleParam.Colorscale.Viridis,
8383
ShowSectionColorScale = true,
8484
SectionOutlineColor = Color.fromKeyword Black,
85-
Rotation = 45,
86-
UseDefaults = false
85+
Rotation = 45
8786
)
8887

8988
(*** condition: ipynb ***)

docs/11_2_contourcarpet_plots.fsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,13 @@ let contourCarpet =
5656
MinorGridCount = 9,
5757
AxisType = StyleParam.AxisType.Linear
5858
),
59-
UseDefaults = false,
6059
Opacity = 0.75
6160
)
6261
Chart.ContourCarpet(
6362
z = [1.; 1.96; 2.56; 3.0625; 4.; 5.0625; 1.; 7.5625; 9.; 12.25; 15.21; 14.0625],
6463
carpetAnchorId = "contour",
6564
A = [0; 1; 2; 3; 0; 1; 2; 3; 0; 1; 2; 3],
6665
B = [4; 4; 4; 4; 5; 5; 5; 5; 6; 6; 6; 6],
67-
UseDefaults = false,
6866
ContourLineColor = Color.fromKeyword White,
6967
ShowContourLabels = true
7068
)

0 commit comments

Comments
 (0)