Skip to content

Commit a0e01da

Browse files
committedNov 16, 2021
fix some docs, use .NET 5 for builds again
1 parent 447fbfc commit a0e01da

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed
 

‎docs/04_5_splom.fsx

+17
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,15 @@ let noDiagonal =
126126
)
127127
|> Chart.withSize (1000,1000)
128128

129+
(*** condition: ipynb ***)
130+
#if IPYNB
131+
noDiagonal
132+
#endif // IPYNB
133+
134+
(***hide***)
135+
noDiagonal |> GenericChart.toChartHTML
136+
(***include-it-raw***)
137+
129138

130139
let noLowerHalf =
131140
Chart.Splom(
@@ -146,3 +155,11 @@ let noLowerHalf =
146155
)
147156
|> Chart.withSize (1000,1000)
148157

158+
(*** condition: ipynb ***)
159+
#if IPYNB
160+
noLowerHalf
161+
#endif // IPYNB
162+
163+
(***hide***)
164+
noLowerHalf |> GenericChart.toChartHTML
165+
(***include-it-raw***)

‎docs/07_0_ohlc.fsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(**
22
---
3-
title: Candlestick Charts
3+
title: OHLC Charts
44
category: Finance Charts
55
categoryindex: 8
66
index: 1

‎global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
33
"version": "5.0.100",
4-
"rollForward": "latestMajor"
4+
"rollForward": "latestMinor"
55
}
66
}

0 commit comments

Comments
 (0)
Please sign in to comment.