Skip to content

Commit d9f3966

Browse files
committed
Add docs 3d-surface plot
1 parent cc3aeaf commit d9f3966

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

docs/content/3d-surface-plots.fsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,15 @@ z
4444
|> Chart.withSize(600.,600.)
4545
(*** include-it:contour1 ***)
4646

47-
48-
49-
47+
// Create simple example data were x y and z is given (z is a xy-Matrix)
48+
let x' = [0.;2.5]
49+
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')
5056

5157

5258

tasks.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)