Skip to content

Commit fab07bf

Browse files
committed
fix indes docs page
1 parent 92c8564 commit fab07bf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/index.fsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,15 +235,17 @@ static void Main(string[] args)
235235
### Declarative style in F# using the underlying `DynamicObj`:
236236
*)
237237

238+
open Plotly.NET.LayoutObjects
239+
238240
let xAxis =
239-
let tmp = Axis.LinearAxis()
241+
let tmp = LinearAxis()
240242
tmp?title <- "xAxis"
241243
tmp?showgrid <- false
242244
tmp?showline <- true
243245
tmp
244246

245247
let yAxis =
246-
let tmp = Axis.LinearAxis()
248+
let tmp = LinearAxis()
247249
tmp?title <- "yAxis"
248250
tmp?showgrid <- false
249251
tmp?showline <- true

0 commit comments

Comments
 (0)