Skip to content

Commit f404e1a

Browse files
committed
Change docs (netstandard)
1 parent 32cd976 commit f404e1a

38 files changed

+144
-120
lines changed

RELEASE_NOTES.md

Lines changed: 33 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,34 @@
1-
### 0.6 - Unreleased
2-
* .NET Standard 2.0
3-
* SDK based project
4-
5-
#### 0.5.1-beta - November 6 2013
6-
* Improved quality of solution-wide README.md files
7-
8-
#### 0.5.0-beta - October 29 2013
9-
* Improved quality of solution-wide README.md files
10-
11-
#### 0.0.1-beta - October 24 2013
12-
* Changed name from fsharp-project-scaffold to FSharp.ProjectScaffold
1+
### 1.1.1 - Jun 22 2018
2+
* Support netStandard 2.0
3+
* Add new chart (SLOMP)
4+
5+
### 1.1.0 - Jan 14 2018
6+
* Add new charts
7+
* Add multiple axis support
8+
* Add subplot support
9+
10+
11+
### 1.0.4 - Oct 17 2017
12+
* Fixed nuget package
13+
14+
### 1.0.3 - Sep 06 2017
15+
* Add different ways to modify Charts
16+
17+
18+
### 1.0.2 - Sep 12 2016
19+
* Add Scatter3d line plots
20+
* Add 3d Surface plots
21+
22+
### 1.0.1 - July 5 2016
23+
* More awesome stuff coming...
24+
* More 3d-Charts
25+
* Multiple axis support
26+
* Shapes
27+
28+
#### 0.5.0-beta - June 22 2016
29+
* Documentation and tutorial
30+
* TraceObjects with interface implementation
31+
* Extensions for Chart module
32+
33+
#### 0.0.1-beta - May 13 2016
1334
* Initial release

docs/content/2d-histograms.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
(*** hide ***)
2-
#r "../../bin/Newtonsoft.Json.dll"
2+
#r "netstandard"
33
#r "../../bin/FSharp.Plotly.dll"
44

5+
56
(**
67
# FSharp.Plotly: Histogram2d
78
@@ -51,6 +52,5 @@ Chart.Histogram2d (x,y)
5152

5253

5354

54-
5555

5656

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(*** hide ***)
2-
#r "../../bin/Newtonsoft.Json.dll"
3-
#r "../../bin/FSharp.Plotly.dll"
2+
#r "netstandard"
3+
#r "../../bin/FSharp.Plotly/netstandard2.0/FSharp.Plotly.dll"
44

55
(**
66
# FSharp.Plotly: Scatter3d Charts with lines

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
(*** hide ***)
2-
#r "../../bin/Newtonsoft.Json.dll"
3-
#r "../../bin/FSharp.Plotly.dll"
2+
#r "netstandard"
3+
#r "../../bin/FSharp.Plotly/netstandard2.0/FSharp.Plotly.dll"
4+
45

56
(**
67
# FSharp.Plotly: Mesh3d
@@ -56,5 +57,3 @@ Trace3d.initMesh3d
5657
)
5758
|> GenericChart.ofTraceObject
5859
(*** include-it:mesh3d_1 ***)
59-
60-

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(*** hide ***)
2-
#r "../../bin/Newtonsoft.Json.dll"
3-
#r "../../bin/FSharp.Plotly.dll"
2+
#r "netstandard"
3+
#r "../../bin/FSharp.Plotly/netstandard2.0/FSharp.Plotly.dll"
44

55
(**
66
# FSharp.Plotly: Scatter3d Charts

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(*** hide ***)
2-
#r "../../bin/Newtonsoft.Json.dll"
3-
#r "../../bin/FSharp.Plotly.dll"
2+
#r "netstandard"
3+
#r "../../bin/FSharp.Plotly/netstandard2.0/FSharp.Plotly.dll"
44

55
(**
66
# FSharp.Plotly: 3D surface plot Charts

docs/content/area-plots.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(*** hide ***)
2-
#r "../../bin/Newtonsoft.Json.dll"
3-
#r "../../bin/FSharp.Plotly.dll"
2+
#r "netstandard"
3+
#r "../../bin/FSharp.Plotly/netstandard2.0/FSharp.Plotly.dll"
44

55
(**
66
# FSharp.Plotly: Area Charts

docs/content/bar-charts.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(*** hide ***)
2-
#r "../../bin/Newtonsoft.Json.dll"
3-
#r "../../bin/FSharp.Plotly.dll"
2+
#r "netstandard"
3+
#r "../../bin/FSharp.Plotly/netstandard2.0/FSharp.Plotly.dll"
44

55
(**
66
# FSharp.Plotly: Bar and Column Charts

docs/content/box-plots.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(*** hide ***)
2-
#r "../../bin/Newtonsoft.Json.dll"
3-
#r "../../bin/FSharp.Plotly.dll"
2+
#r "netstandard"
3+
#r "../../bin/FSharp.Plotly/netstandard2.0/FSharp.Plotly.dll"
44

55
(**
66
# FSharp.Plotly: BoxPlot Charts

docs/content/bubble-charts.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(*** hide ***)
2-
#r "../../bin/Newtonsoft.Json.dll"
3-
#r "../../bin/FSharp.Plotly.dll"
2+
#r "netstandard"
3+
#r "../../bin/FSharp.Plotly/netstandard2.0/FSharp.Plotly.dll"
44

55
(**
66
# FSharp.Plotly: Bubble chart

0 commit comments

Comments
 (0)