We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc3aeaf commit d9f3966Copy full SHA for d9f3966
docs/content/3d-surface-plots.fsx
@@ -44,9 +44,15 @@ z
44
|> Chart.withSize(600.,600.)
45
(*** include-it:contour1 ***)
46
47
-
48
49
+// Create simple example data were x y and z is given (z is a xy-Matrix)
+let x' = [0.;2.5]
+let y' = [0.;2.5]
50
+let z' = [
51
+ [1.;1.;]; // row wise (length x)
52
+ [1.;1.;];
53
+ ] // column (length y)
54
+
55
+Chart.Surface(z',x',y')
56
57
58
tasks.md
@@ -0,0 +1,7 @@
1
+### ToDo's within FSharp.Plotly
2
3
+- [x] Add support for Shapes
4
+- [ ] Add support for second axis
5
+- [ ] Column thickness in Bar-charts
6
+- [ ] Add support for Annotations
7
0 commit comments