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
*Summary:* This example shows how to create three-dimensional point and line charts in F#.
36
36
37
-
Point3D, Line3D, and Bubble3D charts are all derived from `Chart.Scatter3D` and can be generated by that function as well.
37
+
Point3D, Line3D, and Bubble3D charts are all derived from `Chart.Scatter3D` and can be generated by that function, as well.
38
38
However, `Chart.Point3D`, `Chart.Line3D`, or `Chart.Bubble3D` provide sensible defaults and arguments for the respective derived chart, and are recommended to use.
*Summary:* This example shows how to create carpet charts in F#.
35
35
36
-
let's first create some data for the purpose of creating example charts:
36
+
Let's first create some data for the purpose of creating example charts:
37
37
38
38
*)
39
39
@@ -56,7 +56,7 @@ Besides the ability to incorporate more variables, another feature that distingu
56
56
57
57
A conventional carpet plot can capture the interaction of up to three independent variables and three dependent variables and still be easily read and interpolated.
58
58
59
-
Carpet plots have common applications within areas such as material science for showing elastic modulus in laminates,and within aeronautics.
59
+
Carpet plots have common applications within areas such as material science for showing elastic modulus in laminates,and within aeronautics.
60
60
61
61
A carpet plot with two independent variables and one dependent variable is often called a cheater plot for the use of a phantom "cheater" axis instead of the horizontal axis.
62
62
@@ -66,7 +66,7 @@ A carpet plot with two independent variables and one dependent variable is often
66
66
67
67
In plotly, carpet plots are different to all other trace types in the regard that the coordinate system of the carpet is not set on the layout, but is itself a trace.
68
68
69
-
Use `Chart.Carpet` to define these `coordinate traces`. All carpets have a mandatory identifier, which will be used by other traces to define which carpet coordinate system to use.
69
+
Use `Chart.Carpet` to define these `coordinate traces`. All carpets have a mandatory identifier which will be used by other traces to define which carpet coordinate system to use.
70
70
*)
71
71
72
72
letcarpet= Chart.Carpet(carpetId ="carpetIdentifier", A = a, B = b, Y = y)
Icicle charts visualize hierarchical data using rectangular sectors that cascade from root to leaves in one of four directions: up, down, left, or right.
38
38
Similar to Sunburst charts and Treemaps charts, the hierarchy is defined by labels and parents attributes.
39
39
Click on one sector to zoom in/out, which also displays a pathbar on the top of your icicle.
40
-
To zoom out, you can click the parent sector or click the pathbar as well.
40
+
To zoom out, you can click the parent sector or click the pathbar, as well.
The sliders give the option of passing the arguments to the Plotly chart. In the example we use the visibility parameter to make the step chosen in the slider visible.
36
36
37
-
The original exapmle is made with python and can be found [here](https://plotly.com/python/sliders)
37
+
The original example is written in Python and can be found [here](https://plotly.com/python/sliders)
38
38
*)
39
39
40
40
openPlotly.NET
@@ -78,7 +78,7 @@ let sliderSteps =
78
78
steps
79
79
|> Seq.indexed
80
80
|> Seq.map (fun(i,step)->
81
-
// Create a visibility and a title parameters
81
+
// Create a visibility and a title parameter
82
82
// The visibility parameter includes an array where every parameter
0 commit comments