You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Plotly.NET/ChartAPI/Chart.fs
+16-58
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ open Plotly.NET.ConfigObjects
7
7
openDynamicObj
8
8
openSystem
9
9
openSystem.IO
10
-
10
+
openGiraffe.ViewEngine
11
11
openGenericChart
12
12
openSystem.Runtime.InteropServices
13
13
@@ -52,33 +52,6 @@ type Chart =
52
52
letpath= Path.Combine(tempPath, file)
53
53
ch |> Chart.saveHtml (path,true)
54
54
55
-
/// <summary>
56
-
/// Saves the given chart as a temporary html file containing a static image of the chart and opens it in the browser.
57
-
///
58
-
/// IMPORTANT: this is not the same as static image generation. The file still needs to be opened in the browser to generate the image, as it is done via a js script in the html.
59
-
///
60
-
/// For real programmatic static image export use Plotly.NET.ImageExport (https://www.nuget.org/packages/Plotly.NET.ImageExport/)
61
-
///
62
-
/// This yields basically the same results as using `StaticPlot = true` for the chart's config.
63
-
/// </summary>
64
-
/// <param name="format">The image format for the static chart</param>
65
-
/// <param name="ch">The chart to show in the browser</param>
66
-
[<Obsolete("This function will be dropped in the 2.0 release. It is recommended to either create static plots or use Plotly.NET.ImageExport instead.")>]
0 commit comments