Skip to content

Commit 4a56b77

Browse files
committed
Use DynamicObj as nuget package
1 parent 0dfb9ac commit 4a56b77

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+181
-405
lines changed

src/Plotly.NET.ImageExport/Playground.fsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,23 @@
22
#r "nuget: Deedle"
33
#r "nuget: FSharpAux"
44
#r "nuget: Newtonsoft.Json, 12.0.3"
5+
#r "nuget: DynamicObj"
56

67
#load "../Plotly.NET/StyleParams.fs"
7-
#load "../Plotly.NET/DynamicObj.fs"
8-
#load "../Plotly.NET/Frame.fs"
98
#load "../Plotly.NET/Colors.fs"
9+
#load "../Plotly.NET/Rangebreak.fs"
10+
#load "../Plotly.NET/TickFormatStop.fs"
11+
#load "../Plotly.NET/Selection.fs"
12+
#load "../Plotly.NET/Frame.fs"
1013
#load "../Plotly.NET/StockData.fs"
1114
#load "../Plotly.NET/Font.fs"
15+
#load "../Plotly.NET/Title.fs"
1216
#load "../Plotly.NET/Pathbar.fs"
1317
#load "../Plotly.NET/TreemapTiling.fs"
1418
#load "../Plotly.NET/Colorbar.fs"
1519
#load "../Plotly.NET/RangeSlider.fs"
20+
#load "../Plotly.NET/Button.fs"
21+
#load "../Plotly.NET/RangeSelector.fs"
1622
#load "../Plotly.NET/Light.fs"
1723
#load "../Plotly.NET/Legend.fs"
1824
#load "../Plotly.NET/Contours.fs"
@@ -26,6 +32,7 @@
2632
#load "../Plotly.NET/Marker.fs"
2733
#load "../Plotly.NET/Hoverlabel.fs"
2834
#load "../Plotly.NET/Axis.fs"
35+
#load "../Plotly.NET/Polar.fs"
2936
#load "../Plotly.NET/Bins.fs"
3037
#load "../Plotly.NET/Cumulative.fs"
3138
#load "../Plotly.NET/Scene.fs"
@@ -53,6 +60,7 @@
5360
#load "../Plotly.NET/CandelstickExtension.fs"
5461
#load "../Plotly.NET/SankeyExtension.fs"
5562

63+
5664
open Plotly.NET
5765
open GenericChart
5866

src/Plotly.NET.ImageExport/Plotly.NET.ImageExport.fsproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
</ItemGroup>
3838

3939
<ItemGroup>
40+
<PackageReference Include="DynamicObj" Version="0.0.3" />
4041
<PackageReference Include="PuppeteerSharp" Version="4.0.0" />
4142
</ItemGroup>
4243

src/Plotly.NET.ImageExport/PuppeteerSharpRenderer.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ open System
77
open System.IO
88
open System.Text
99
open System.Text.RegularExpressions
10+
open DynamicObj
1011

1112
type PuppeteerSharpRenderer() =
1213

src/Plotly.NET/Annotation.fs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
namespace Plotly.NET
22

3+
open DynamicObj
4+
35
/// Text annotations inside a plot
46
type Annotation() =
57
inherit DynamicObj ()

src/Plotly.NET/Axis.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
namespace Plotly.NET
22

3+
open DynamicObj
34
open System
45

56
/// <summary>Various axes that can be used to add scales to your plots.</summary>

src/Plotly.NET/Bins.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
namespace Plotly.NET
22

3+
open DynamicObj
34

45
/// Bin type inherits from dynamic object
56
type Bins () =

src/Plotly.NET/Box.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
namespace Plotly.NET
22

3+
open DynamicObj
34
open System
45

5-
66
/// Box type inherits from dynamic object (parent violin)
77
type Box () =
88
inherit DynamicObj ()

src/Plotly.NET/Button.fs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
namespace Plotly.NET
22

3+
open DynamicObj
4+
35
/// Dimensions type inherits from dynamic object
46
type Button () =
57
inherit DynamicObj ()

src/Plotly.NET/CandelstickExtension.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
namespace Plotly.NET
22

3+
open DynamicObj
34
open Trace
45
open System
56
open System.Runtime.InteropServices

src/Plotly.NET/Chart.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
namespace Plotly.NET
22

3+
open DynamicObj
34
open System
45
open System.IO
56
//open FSharp.Care.Collections

src/Plotly.NET/ChartExtensions.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
namespace Plotly.NET
22

3+
open DynamicObj
34
open System
45
open System.IO
56

src/Plotly.NET/Colorbar.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
namespace Plotly.NET
22

3+
open DynamicObj
34
open System
45

56
/// Colorbar type inherits from dynamic object

src/Plotly.NET/Config.fs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
namespace Plotly.NET
2+
3+
open DynamicObj
4+
25
// missing config props:
36

47
// fillFrame: {

src/Plotly.NET/Contours.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace Plotly.NET
22

3-
3+
open DynamicObj
44

55
/// Contour object inherits from dynamic object
66
type Contour () =

src/Plotly.NET/Cumulative.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace Plotly.NET
22

3-
3+
open DynamicObj
44

55
//enabled (boolean)
66
//If true, display the cumulative distribution by summing the binned values. Use the `direction` and `centralbin` attributes to tune the accumulation method. Note: in this mode, the "density" `histnorm` settings behave the same as their equivalents without "density": "" and "density" both rise to the number of data points, and "probability" and "probability density" both rise to the number of sample points.

src/Plotly.NET/Dimensions.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
namespace Plotly.NET
22

3+
open DynamicObj
34
open System
45

5-
66
/// Dimensions type inherits from dynamic object
77
type Dimensions () =
88
inherit DynamicObj ()

src/Plotly.NET/DisplayOptions.fs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
namespace Plotly.NET
22

3+
open DynamicObj
4+
35
type ChartDescription =
46
{
57
Heading : string

src/Plotly.NET/Domain.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
namespace Plotly.NET
22

3+
open DynamicObj
34
open System
45

5-
66
/// Dimensions type inherits from dynamic object
77
type Domain () =
88
inherit DynamicObj ()

0 commit comments

Comments
 (0)